Do the math.
SMA10 = (x + Close[1] + ... + Close[9]) / 10
SMA20 = (x + Close[1] + ... + Close[19]) / 20
Cross is SMA10 == SMA20, solve for x. Good until the next bar.

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
Hello,
If anyone have formula how to calculate exact price for next 2 MA crossover please post it.
I have 2 MAs, and wanted to know at what price next crossover will happen.
FastMAPrice = NormalizeDouble(iMA(NULL, 0, 10, 0, MODE_SMA, PRICE_CLOSE, 0), Digits);SlowMAPrice = NormalizeDouble(iMA(NULL, 0, 20, 0, MODE_SMA, PRICE_CLOSE, 0), Digits);