- Your calculation will be negative on a rising EMA.
- Instead of slope, try percentage pct = 100 × { EMA(0) - EMA(1) } ÷ EMA(1)
William
Roeder:
- Your calculation will be negative on a rising EMA.
- Instead of slope, try percentage pct = 100 × { EMA(0) - EMA(1) } ÷ EMA(1)
good approach thanks however it didn't work as intended. Still value effected by the price.

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
hi all,
the simple formulation (pseudo code) below gives you a very good idea about slope of an EMA (substraction the last ema value from the previous one), but because pip value af all currencies are different I need to equate the result for all pairs using a constant number
could you help me to find that constant value?
Slope of EMA= EMA(1)-EMA(0);