William Blau's Indicators

Here you can post and download custom indicators. PLEASE: Do not start topics unless you are posting your own indicator, they will be moved to appropriate section even if you do.

Moderator: admin

Re: William Blau's Indicators

Postby Alexander.Gettinger » Mon Jan 13, 2014 3:08 pm

Blau Ergodic MDI oscillator

Formulas:
Blau_EMDI=EMA(EMA(MD, Smooth period 2), Smooth period 3),
Signal = EMA(Blau_EMDI, Signal period), where
MD[i] = Price[i]-EMA(Price, Smooth period 1).

Blau_Ergodic_MDI.PNG


Download:
Blau_Ergodic_MDI.lua
(2.8 KiB) Downloaded 647 times
Alexander.Gettinger
FXCodeBase: Confirmed User
 
Posts: 3785
Joined: Wed Mar 31, 2010 9:40 pm
Location: Russia, Omsk

Re: William Blau's Indicators

Postby Alexander.Gettinger » Mon Jan 13, 2014 3:11 pm

Blau MACD

Formulas:
Blau_MACD = EMA(MACD, Smooth period 3), where
MACD = EMA(Price, Smooth period 2)-EMA(Price, Smooth period 1).

Blau_MACD.PNG


Download:
Blau_MACD.lua
(2.22 KiB) Downloaded 617 times
Alexander.Gettinger
FXCodeBase: Confirmed User
 
Posts: 3785
Joined: Wed Mar 31, 2010 9:40 pm
Location: Russia, Omsk

Re: William Blau's Indicators

Postby Alexander.Gettinger » Mon Jan 13, 2014 3:13 pm

Blau Ergodic MACD

Formulas:
Blau_MACD = EMA(MACD, Smooth period 3),
Signal = EMA(Blau_MACD, Signal period), where
MACD = EMA(Price, Smooth period 2)-EMA(Price, Smooth period 1).

Blau_Ergodic_MACD.PNG


Download:
Blau_Ergodic_MACD.lua
(2.79 KiB) Downloaded 717 times
Alexander.Gettinger
FXCodeBase: Confirmed User
 
Posts: 3785
Joined: Wed Mar 31, 2010 9:40 pm
Location: Russia, Omsk

Re: William Blau's Indicators

Postby Alexander.Gettinger » Mon Jan 13, 2014 3:16 pm

Blau Ergodic Oscillator

Formulas:
Blau_Er = 100*EMA3/AbsEMA3,
Signal = EMA(Blau_Er, Signal period), where
EMA3 = EMA(EMA(EMA(Mtm, Smooth period 1), Smooth period 2), Smooth period 3),
AbsEMA3 = EMA(EMA(EMA(AbsMtm, Smooth period 1), Smooth period 2), Smooth period 3),
Mtm[i] = Price[i]-Price[i-Period+1],
AbsMtm[i] = Abs(Mtm[i]).

Blau_Ergodic.PNG


Download:
Blau_Ergodic.lua
(3.51 KiB) Downloaded 593 times
Alexander.Gettinger
FXCodeBase: Confirmed User
 
Posts: 3785
Joined: Wed Mar 31, 2010 9:40 pm
Location: Russia, Omsk

Re: William Blau's Indicators

Postby Alexander.Gettinger » Mon Jan 13, 2014 3:19 pm

Blau Candlestick Momentum Index

Formulas:
Blau_CMI = 100*EMA3/AbsEMA3, where
EMA3 = EMA(EMA(EMA(CM, Smooth period 1), Smooth period 2), Smooth period 3),
AbsEMA3 = EMA(EMA(EMA(AbsCM, Smooth period 1), Smooth period 2), Smooth period 3),
CM[i] = Price1[i]-Price2[i-Period+1],
AbsCM[i] = Abs(CM[i]).

Blau_CMI.PNG


Download:
Blau_CMI.lua
(4.43 KiB) Downloaded 591 times
Alexander.Gettinger
FXCodeBase: Confirmed User
 
Posts: 3785
Joined: Wed Mar 31, 2010 9:40 pm
Location: Russia, Omsk

Re: William Blau's Indicators

Postby Alexander.Gettinger » Mon Jan 13, 2014 3:21 pm

Blau Ergodic Candlestick Momentum Index

Formulas:
Blau_CMI = 100*EMA3/AbsEMA3,
Signal = EMA(Blau_CMI, Signal period), where
EMA3 = EMA(EMA(EMA(CM, Smooth period 1), Smooth period 2), Smooth period 3),
AbsEMA3 = EMA(EMA(EMA(AbsCM, Smooth period 1), Smooth period 2), Smooth period 3),
CM[i] = Price1[i]-Price2[i-Period+1],
AbsCM[i] = Abs(CM[i]).

Blau_Ergodic_CMI.PNG


Download:
Blau_Ergodic_CMI.lua
(5 KiB) Downloaded 580 times
Alexander.Gettinger
FXCodeBase: Confirmed User
 
Posts: 3785
Joined: Wed Mar 31, 2010 9:40 pm
Location: Russia, Omsk

Re: William Blau's Indicators

Postby Alexander.Gettinger » Mon Jan 13, 2014 3:24 pm

Blau Ergodic Candlestick Index

Formulas:
Blau_CSI = 100*CM_EMA3/HH_EMA3,
Signal = EMA(Blau_CSI, Signal period), where
CM_EMA3 = EMA(EMA(EMA(CM, Smooth period 1), Smooth period 2), Smooth period 3),
HH_EMA3 = EMA(EMA(EMA(HH, Smooth period 1), Smooth period 2), Smooth period 3),
CM[i] = Price1[i]-Price2[i-Period+1],
HH[i] = Max-Min,
Max, Min - maximum and minimum prices at range from (i-Period+1) to (i).

Blau_Ergodic_CSI.PNG


Download:
Blau_Ergodic_CSI.lua
(5.06 KiB) Downloaded 591 times
Alexander.Gettinger
FXCodeBase: Confirmed User
 
Posts: 3785
Joined: Wed Mar 31, 2010 9:40 pm
Location: Russia, Omsk

Re: William Blau's Indicators

Postby Alexander.Gettinger » Mon Jan 13, 2014 3:26 pm

Blau Composite High-Low Momentum

Formulas:
Blau_HLM = EMA(EMA(EMA(HLM, Smooth period 1), Smooth period 2), Smooth period 3), where
HLM[i] = HM[i]-LM[i],
HM[i] = High[i]-High[i-Period+1],
LM[i] = Low[i-Period+1]-Low[i].

Blau_HLM.PNG


Download:
Blau_HLM.lua
(2.59 KiB) Downloaded 628 times
Alexander.Gettinger
FXCodeBase: Confirmed User
 
Posts: 3785
Joined: Wed Mar 31, 2010 9:40 pm
Location: Russia, Omsk

Re: William Blau's Indicators

Postby Alexander.Gettinger » Mon Jan 13, 2014 3:30 pm

Blau Ergodic DTI-Oscillator

Formulas:
Blau_DTI = 100*EMA3/AbsEMA3,
Signal = EMA(Blau_DTI, Signal period), where
EMA3 = EMA(EMA(EMA(HLM, Smooth period 1), Smooth period 2), Smooth period 3),
AbsEMA3 = EMA(EMA(EMA(AbsHLM, Smooth period 1), Smooth period 2), Smooth period 3),
HLM[i] = HM[i]-LM[i],
AbsHLM[i] = Abs(HLM[i]),
HM[i] = High[i]-High[i-Period+1],
LM[i] = Low[i-Period+1]-Low[i].

Blau_Ergodic_DTI.PNG


Download:
Blau_Ergodic_DTI.lua
(3.7 KiB) Downloaded 614 times
Alexander.Gettinger
FXCodeBase: Confirmed User
 
Posts: 3785
Joined: Wed Mar 31, 2010 9:40 pm
Location: Russia, Omsk

Re: William Blau's Indicators

Postby Alexander.Gettinger » Mon Jan 13, 2014 4:20 pm

MQL4 version of William Blau's Indicators: viewtopic.php?f=38&t=60201.
Alexander.Gettinger
FXCodeBase: Confirmed User
 
Posts: 3785
Joined: Wed Mar 31, 2010 9:40 pm
Location: Russia, Omsk

PreviousNext

Return to Custom Indicators

Who is online

Users browsing this forum: Google [Bot] and 63 guests