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:
- 2971
- Rating:
- Published:
- 2018.06.16 10:00
-
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance
The William Blau Stochastic Oscillator indicator shows the William Blau stochastic oscillator.
It has six input parameters:
- Period - calculation period;
- First smooth period - the initial smoothing period;
- Second smooth period - the secondary smoothing period;
- Third smooth period - the resulting smoothing period;
- Signal period - the signal line period;
- Applied price - price used for calculations.
Calculations:
Blau_TStoch = 100*Stoch_EMA3/HH_EMA3, Signal = EMA(Blau_TStoch, Signal period)
where:
Stoch_EMA3 = EMA(EMA(EMA(Stoch, First smooth period), Second smooth period), Third smooth period), HH_EMA3 = EMA(EMA(EMA(HH, First smooth period), Second smooth period), Third smooth period), Stoch [i] = Price[i]-Min, HH[i] = Max-Min, Max, Min are the highest and the lowest price within the range from (i-Period+1) to (i)
Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/20515

William Blau Trend Momentum.

William Blau Stochastic Indicator