Ergodoic Osc

This is the place to discuss EdgeRater Chart Script

Moderator: Chris White

Post Reply
henry1224
Posts: 457
Joined: Wed Feb 24, 2016 12:04 pm

Ergodoic Osc

Post by henry1224 »

Under the Parameters tab

LongL double 25 5 100
ShortL Double 13 2 100
SignalL Double 3 2 100


Here is the rest of the formula

diff:= close - Ref(close,1);
doubleSmoothedAbsDiff:= EMA( EMA( Abs(diff), longL), shortL);

TSI:= if (doubleSmoothedAbsDiff == 0 ,0,
(( EMA( EMA( diff, longL), shortL)) / doubleSmoothedAbsDiff)*100);
Signal:= EMA( TSI, signalL);
Erg:TSI-Signal,ColorStick;

FillRgn(ERG>0,0,ERG),Brush#50008000;
FillRgn(ERG<0,0,ERG),Brush#50800000;


ZeroLine : 0,ColorBlack;
Post Reply