Discussions
»
Resource Library
»
Trader's Tips from TASC Magazine
»
2017
»
February 2017: Exponential Standard Deviation Bands
Rank: Advanced Member
Groups: Moderators, Registered, Registered Users, Subscribers Joined: 10/8/2010(UTC) Posts: 1,960
Thanks: 92 times Was thanked: 155 time(s) in 150 post(s)
|
Vitali Apirine's article, “Exponential Standard Deviation Bands”, introduced an indicator of the same name. The MetaStock formula for that indicator is listed below: Exponential Standard Deviation Bands: Code:t1:= Input("time periods", 1, 50, 20);
p1:= C;
ma:= Mov(p1,t1,S);
x:=Sum(Power(p1-LastValue(ma +(PREV*0)),2),t1);
esd:= Sqrt(x/t1);
ma + (esd * 2);
ma;
ma - (esd * 2)
|
|
|
|
Users browsing this topic |
Guest (Hidden)
|
Discussions
»
Resource Library
»
Trader's Tips from TASC Magazine
»
2017
»
February 2017: Exponential Standard Deviation Bands
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.