logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
MS Support  
#1 Posted : Friday, July 28, 2017 10:27:44 PM(UTC)
MS Support

Rank: Advanced Member

Groups: Moderators, Registered, Registered Users, Subscribers
Joined: 10/8/2010(UTC)
Posts: 1,934

Thanks: 85 times
Was thanked: 154 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)
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.