Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti
123
vtcpa04  
Karlo Wilson Vendiola:

You are welcome. Keep us updated. You can send us a PM anytime

Best Regards,

Karlo

Hi Karlo,

I just wanted to update you and anyone else reading that my installation issue has been resolved.  The issue was I was not logged in through the MQL5 community when I made the purchase.  So that is a lesson to everyone else out there make sure you are logged in through MQL5 community before making any purchases in the MQL5 marketplace.  Lastly, I just wanted to reiterate that I am one of many of your very satisfied customers.  As I mentioned in one of the pms I sent you yesterday, my purchase of your Energy Beam indicator is my fifth such purchase of your 8 indicators as of this posting.  Please keep creating great indicators and keep up the excellent service, because both are greatly appreciated.

Warmest Regards,

vtcpa04 

Karlo Wilson Vendiola  
vtcpa04:

Hi Karlo,

I just wanted to update you and anyone else reading that my installation issue has been resolved.  The issue was I was not logged in through the MQL5 community when I made the purchase.  So that is a lesson to everyone else out there make sure you are logged in through MQL5 community before making any purchases in the MQL5 marketplace.  Lastly, I just wanted to reiterate that I am one of many of your very satisfied customers.  As I mentioned in one of the pms I sent you yesterday, my purchase of your Energy Beam indicator is my fifth such purchase of your 8 indicators as of this posting.  Please keep creating great indicators and keep up the excellent service, because both are greatly appreciated.

Warmest Regards,

vtcpa04 

Hi 

Thank you for your kind words and continuous support. Satisfied clients are our drive in developing quality products.

We are glad to hear that your issue was resolved.

Regards

Валерий Булаш  

How to obtain Energy (as it's named in Data window) value by MQL ?

I found:

  • Energy = -1 for red (sell).
  • Energy = empty (NULL maybe) for flat or unknown forecast.
  • Energy = 1 for blue (buy).
What I've got through iCustom (mode from 0 to 29; yes, I know that 7 is maximum by MQL doc, but...):

  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [29] = 1
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [28] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [27] = 2
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [26] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [25] = 3
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [24] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [23] = 4
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [22] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [21] = 5
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [20] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [19] = 6
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [18] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [17] = 7
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [16] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [15] = 8
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [14] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [13] = 9
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [12] = 9.6
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [11] = 9.9
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [10] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [9] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [8] = 0
  • 2015.08.28 14:49:56.384 CheckAT EURUSD,M5: PEB value [7] = 10.6
  • 2015.08.28 14:49:56.384 CheckAT EURUSD,M5: PEB value [6] = 10.8
  • 2015.08.28 14:49:56.384 CheckAT EURUSD,M5: PEB value [5] = 11.5
  • 2015.08.28 14:49:56.384 CheckAT EURUSD,M5: PEB value [4] = 0
  • 2015.08.28 14:49:56.384 CheckAT EURUSD,M5: PEB value [3] = 0
  • 2015.08.28 14:49:56.384 CheckAT EURUSD,M5: PEB value [2] = 0
  • 2015.08.28 14:49:56.384 CheckAT EURUSD,M5: PEB value [1] = 11.8
  • 2015.08.28 14:49:56.384 CheckAT EURUSD,M5: PEB value [0] = 12.5

At that time Energy was -1 (red). 

None of these listed values looks similar to Energy. Maybe it's calculated, but how exactly?

This listing produced by MQL code:

const string PEB_name = "\\market\\PipFinite Energy Beam";

void OnStart()
{
        for( int index = 0; index < 30; index++) {
                double signal_value = iCustom ( NULL, 0, PEB_name, index, 1 );
                PrintFormat( "PEB value [%d] = %g", index, signal_value );
        }
}
Karlo Wilson Vendiola  
Валерий Булаш:

How to obtain Energy (as it's named in Data window) value by MQL ?

I found:

  • Energy = -1 for red (sell).
  • Energy = empty (NULL maybe) for flat or unknown forecast.
  • Energy = 1 for blue (buy).
What I've got through iCustom (mode form 0 to 29; yes, I know that 7 is maximum by MQL doc, but...):

  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [29] = 1
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [28] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [27] = 2
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [26] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [25] = 3
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [24] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [23] = 4
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [22] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [21] = 5
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [20] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [19] = 6
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [18] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [17] = 7
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [16] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [15] = 8
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [14] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [13] = 9
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [12] = 9.6
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [11] = 9.9
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [10] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [9] = 0
  • 2015.08.28 14:49:56.385 CheckAT EURUSD,M5: PEB value [8] = 0
  • 2015.08.28 14:49:56.384 CheckAT EURUSD,M5: PEB value [7] = 10.6
  • 2015.08.28 14:49:56.384 CheckAT EURUSD,M5: PEB value [6] = 10.8
  • 2015.08.28 14:49:56.384 CheckAT EURUSD,M5: PEB value [5] = 11.5
  • 2015.08.28 14:49:56.384 CheckAT EURUSD,M5: PEB value [4] = 0
  • 2015.08.28 14:49:56.384 CheckAT EURUSD,M5: PEB value [3] = 0
  • 2015.08.28 14:49:56.384 CheckAT EURUSD,M5: PEB value [2] = 0
  • 2015.08.28 14:49:56.384 CheckAT EURUSD,M5: PEB value [1] = 11.8
  • 2015.08.28 14:49:56.384 CheckAT EURUSD,M5: PEB value [0] = 12.5

At that time Energy was -1 (red). 

None of these listed values looks similar to Energy. Maybe it's calculated, but how exactly?

This listing produced by MQL code:

Hi sir,

 

You just need to use the buffer number 30.

= 1 is bullish

= -1 bearish

= 0 neutral 

We can send a sample code via PM

 

Regards

Karlo 

Валерий Булаш  
Karlo Wilson Vendiola:

Hi sir,

 

You just need to use the buffer number 30.

= 1 is bullish

= -1 bearish

= 0 neutral 

We can send a sample code via PM

 

Regards

Karlo 

Yes, please, send me a code
Валерий Булаш  
Валерий Булаш:
Yes, please, send me a code
But, if it's only obtaining value for index = 30 - I knew that
Karlo Wilson Vendiola  

Yes, it is the only value needed which is the result of the filters you specify

 

Example: Filters = You set to 6 

If buffer 30 = 1 it means bullish 

If it is bullish, then there at least 6 filters activated to be bullish

If buffer 30 = -1 then there are at least 6 filters activated to be bearish 

If buffer 30 = 0, the neither bullish or bearish filters activated reached 6 

Lev Vladimirovic Marushkin  

https://www.youtube.com/watch?v=kDAxI1B5fP4&feature=youtu.be

what settings are used for laser and what settings are used for beam in the above video?

thanks 

Karlo Wilson Vendiola  
Lev Vladimirovic Marushkin:

https://www.youtube.com/watch?v=kDAxI1B5fP4&feature=youtu.be

what settings are used for laser and what settings are used for beam in the above video?

thanks 

Hi Lev,

Thank you for your inquiry 

Default settings were used in the Energy Beam and Trend Laser in the video.

Regards

Karlo 

fabbry72  

Hello,

very good indicator

I suggest two things to make it "best buy"

1) possibility select timeframe and have in the same chart energy beam in 1min / 5min / 15min / 30min / 60min / 4H ecc.... (in a few words can watch a trend power)

2) possibility to hide the bars under the headline take too much space !!!

Do this it becomes the best indicator on MQL5

See you soon with  news...

Fabrizio

Karlo Wilson Vendiola  
fabbry72:

Hello,

very good indicator

I suggest two things to make it "best buy"

1) possibility select timeframe and have in the same chart energy beam in 1min / 5min / 15min / 30min / 60min / 4H ecc.... (in a few words can watch a trend power)

2) possibility to hide the bars under the headline take too much space !!!

Do this it becomes the best indicator on MQL5

See you soon with  news...

Fabrizio

Hi Fabrizio

Thank you for your appreciation with our work.

We will answer your query via personal message

Regards

Karlo 

ngubane  
I purchased energy beam and saw that I have 5 activations. how can I install/activate it on another laptop? and have it work on both laptops.
Karlo Wilson Vendiola  
ngubane:
I purchased energy beam and saw that I have 5 activations. how can I install/activate it on another laptop? and have it work on both laptops.

Hi

Thank you for purchasing our product!

We will provide instructions on how to install indicators in your other laptop

Regards

Karlo 

Igor Furlan  

Hello Karlo,

I work at a full-time job, so I don't have time for scalping trading. Can I use your Energy Beam along with Trend Laser to trade D1 charts? Thanks in advance. 

Karlo Wilson Vendiola  
Igor Furlan:

Hello Karlo,

I work at a full-time job, so I don't have time for scalping trading. Can I use your Energy Beam along with Trend Laser to trade D1 charts? Thanks in advance. 

Hi

Thank you for your query

Regarding your concern we will contact you via personal message

Regards

Karlo 

Karlo Wilson Vendiola  

Dear Traders, 

PipFinite has been providing one of the most reliable tools 
We are proud that more and more traders are using our tools everyday! 
Because of that, PipFinite is NOW AVAILABLE in MetaTrader 5 platform! 
Link Here https://www.mql5.com/en/market/mt5?Filter=pipfinite 

 

MT5


All our tools 
Never Repaint 
Never Backpaint 
Never Recalculate 
Never Lag (Signals strictly on Bar's Open or Bar's Close Only) 
Check out our tools & trade with confidence 
We are here to provide the best...nothing but the best 


Thankyou very much 
-PipFinite Team

10658414  
I bought index
Omit the podium and I want it down once again how
Karlo Wilson Vendiola  
10658414:
I bought index
Omit the podium and I want it down once again how
sent you pm
Lunno Goncalves  
Do you give discount to buy two or more signals systems?
Karlo Wilson Vendiola  
Lunno Goncalves:
Do you give discount to buy two or more signals systems?
sent you pm
Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti
123