To Tegasite :
If the Ergodic Candlestick Oscillator is not already programmed into your list of indicators on your charting software then you will have to find it on the internet - there are plenty of articles on it.
Then you will only be able to use it if you can program write it into your software. I cannot give you a formula here because different charting uses different scripts.
The oscillator comes from a book "Momentum, Direction and Divergence" by William Blau :
The script below is written in Bullscript taken from the Bullcharts stock charting program manufactured in Australia. It is somewhat similar to Metastock programming.
[citation=Momentum, Direction and Divergence, William Blau]
[target=Default; author=Blau, William; category=Oscillators|Candlesticks]
[horzline=0]
n1 := input("Time periods 1",11,1);
n2 := input("Time periods 2",4,1);
n3 := input("Time periods 3",5,1);
eco:=(ma(ma(C-O,n1,E),n2,E)/ma(ma(H-L,n1,E),n2,E))*100;
signal:=ma(eco,n3,E);
[name=ECO]
eco;
[name=Signal;linestyle=dash]
signal
Warning - consider again your timeframe.
It is definitely the fastest trend change indicator in existance - only direct price action is faster. (Thats why I use candlesticks).
|