You could, but it is easier to just read the buffer(s) with iCustom.
Detailed explanation of iCustom - MQL4 programming forum (2017)
Detailed explanation of iCustom - MQL4 programming forum (2017)
William Roeder #:
You could, but it is easier to just read the buffer(s) with iCustom.
Detailed explanation of iCustom - MQL4 programming forum (2017)
You could, but it is easier to just read the buffer(s) with iCustom.
Detailed explanation of iCustom - MQL4 programming forum (2017)
Okay thanks. So that means I must put the indicator in include ?
Then use these correspondence buffer to determine the information from the indicator right ?
//--- indicator buffers mapping SetIndexBuffer(0,BufferArrowToUP,INDICATOR_DATA); SetIndexBuffer(1,BufferArrowToDN,INDICATOR_DATA); SetIndexBuffer(2,BufferLineToUP,INDICATOR_DATA); SetIndexBuffer(3,BufferLineToDN,INDICATOR_DATA); SetIndexBuffer(4,BufferRSI,INDICATOR_DATA); SetIndexBuffer(5,BufferATR,INDICATOR_CALCULATIONS);

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
I found this indicator of RSI Divergence
Can I just put the include trade.mqh and execute buy trade/sell trade when this indicator draw the arrow buy for bullish and sell for bearish and make this indicator become EA ?