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
void OnTick()
{
double ADX = iADX(NULL, 120,14,PRICE_CLOSE,MODE_MAIN,0);
Print("ADX : ", ADX);
}
I just want to get the ADX of 2 hours timeframe but it always return zero.
I think this is a bug from MQL4 because I researched the web and many people have the same problem with no one solving the issue.