MQL4 - automated forex trading   /  

Forum

Average Size BarIndicator
Average Size Bar
Author: Scriptor
How to Use Crashlogs to Debug Your Own DLLsHow to Use Crashlogs to Debug Your Own DLLs Screenshot
AUDCHF, H4
Real
WAVES 3EMAWAVES 3EMA Try product
WAVES 3EMA
Author: tol64
Subscribe to signal
Scalper BuySellStop
1 199.85%, 64 992.71 USD

Eagle Breakout indicator

Back to topics list To post a new topic, please log in or register

avatar
39
Genma 2010.04.12 13:09
 
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: http://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?


 
FANN2MQL Neural Network Tutorial

FANN2MQL Neural Network Tutorial

This article has been made to show you how to use neural networks, via FANN2MQL, using an easy example: teaching a simple pattern to the neuralnetwork, and testing it to see if it can recognize patterns it has never seen.


avatar
538
EADeveloper 2010.04.12 16:12
 
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: http://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...
 

avatar
39
Genma 2010.04.13 02:24
 
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.
Back to topics list  

To add comments, please log in or register