Eagle Breakout indicator

 
I'm currently looking at the Panca Eagle Breakout strategy and want to know if anyone has experience with this indicator?

I have so far loaded it with icustom however I can't seem to retreive the 'BoxBreakOut_High' and 'BoxBreakOut_Low' values.

double eagle = iCustom(NULL, PERIOD_M30, "breakout-eagle", 50, 0000, 0530, 2300, 40, 128, 72, 255, false, 0);
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ (amount of days, time open, time close, colours etc)




You can download the indicator from this thread here: https://forum.mql4.com/18644

Does anyone know how to retrieve these values from this indicator? or do I need to include the indicator in my EA?
 
Genma wrote >>
I'm currently looking at the Panca Eagle Breakout strategy and want to know if anyone has experience with this indicator?

I have so far loaded it with icustom however I can't seem to retreive the 'BoxBreakOut_High' and 'BoxBreakOut_Low' values.

double eagle = iCustom(NULL, PERIOD_M30, "breakout-eagle", 50, 0000, 0530, 2300, 40, 128, 72, 255, false, 0);
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ (amount of days, time open, time close, colours etc)




You can download the indicator from this thread here: https://forum.mql4.com/18644

Does anyone know how to retrieve these values from this indicator? or do I need to include the indicator in my EA?



i guess you will only retrive the information you need with ObjectGetValueByShift .. look in Dokumentation.
These indi does not have some buffers from where to read the value, so you also dont need to include and also dont need iCustom...
 
EADeveloper:


i guess you will only retrive the information you need with ObjectGetValueByShift .. look in Dokumentation.
These indi does not have some buffers from where to read the value, so you also dont need to include and also dont need iCustom...


Thanks mate, I'll check it out.
Reason: