Watch how to download trading robots for free
Find us on Twitter!
Join our fan page
Join our fan page
You liked the script? Try it in the MetaTrader 5 terminal
- Views:
- 3802
- Rating:
- Published:
- 2018.10.25 15:00
-
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance
Stochastic expansion oscillator is a stochastic oscillator with a non-conventional calculation and display.
The indicator has three input parameters:
- %K period - K line calculation period
- Slowing - slowing calculation period
- Noise filter period - noise filter calculation period (signal line)
Calculation:
K = KB1+KB2 Signal = SMA(K, Noise filter period)
where:
KB1 = AvgLow/AvgHigh KB2 = -AvgHigh/AvgLow AvgLow = SMA(LowB, Slowing) AvgHigh = SMA(HighB,Slowing) LowB = Close-Min HighB = Max-Close Min, Max - the lowest and the highest prices in the %K period range
Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/22112