Watch how to download trading robots for free
Find us on Telegram!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Indicators

Blau_TS_Stochastic - indicator for MetaTrader 5

Views:
2494
Rating:
(9)
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

Blau_Trend_Momentum Blau_Trend_Momentum

William Blau Trend Momentum.

Blau_Stochastic_Index Blau_Stochastic_Index

William Blau Stochastic Indicator

Blau_TSI Blau_TSI

William Blau True Strength Index.

Blau_TStoch Blau_TStoch

William Blau Stochastic.