| / | Forum |
|
|
|
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. |
|
|
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? 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:
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... |
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?