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

Notification

Icon
Error

Options
Go to last post Go to first unread
minnamor  
#1 Posted : Tuesday, October 23, 2007 8:17:31 AM(UTC)
minnamor

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 4/27/2005(UTC)
Posts: 126
Location: Italy

In Traders Tips of November 2007 the MS code for the Short-Term Volume And Price Oscillator by Sylvain Vervoort is in the article and not shown in Traders Tips.

Can anyone provide this code in this forum.

It seems that nobody cares to publish MS code for new indicators in traditional sites like http://trader.online.pl/MSZ/!-zmiany.html (last MS update on 05/03/2007) not to mention https://www.metastock.com/Customer/Resources/TASC/ which was last updated in June 2006.
Thanks.

minnamor  
#2 Posted : Friday, October 26, 2007 11:30:03 PM(UTC)
minnamor

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 4/27/2005(UTC)
Posts: 126
Location: Italy

The answer to the above can be found in the Yahoo Finance Metastock Forum where I got a reply within 24 hours.

Sylvestro  
#3 Posted : Sunday, October 28, 2007 11:31:22 AM(UTC)
Sylvestro

Rank: Newbie

Groups: Registered, Registered Users
Joined: 5/21/2007(UTC)
Posts: 6

Herewith the code:

Greetings,
S. Vervoort

{calculate the heikin ashi closing average haCl and get the input variables}

haO:=(Ref((O+H+L+C)/4,-1) + PREV)/2;

haCl:=((O+H+L+C)/4+haO+Max((O+H+L+C)/4,Max(H,haO))+Min((O+H+L+C)/4,Min(L,haO)))/4;

period:= Input("SVAPO period :", 2, 20, 8);

cutoff:= Input("Minimum %o price change :",0,10,1);

{Inputs for standard deviation bands}

devH:= Input("Standard Deviation High :", 0.1, 5, 1.5);

devL:= Input("Standard Deviation Low :", 0.1, 5, 1.3);

stdevper:= Input("Standard Deviation Period :", 1, 200, 100);

{Smooth HaCl closing price}

haC:=Tema(haCl,period/1.6);

{Medium term MA of Volume to limit extremes and division factor}

vave:=Ref(Mov(V,period*5,S),-1);

vmax:=vave*2;

vc:=If(V<vmax,V,vmax);

{Basic volume trend}

vtr:=Tema(LinRegSlope(V,period),period);

{SVAPO result of price and volume}

SVAPO:=Tema(Sum(If(haC>(Ref(haC,-1)*(1+cutoff/1000)) AND Alert(vtr>=Ref(vtr,-1),2), vc, If(haC<(Ref(haC,-1)*(1-cutoff/1000)) AND Alert(vtr>Ref(vtr,-1),2),-vc,0)),period)/(vave+1),period);

devH*Stdev(SVAPO,stdevper);

-devL*Stdev(SVAPO,stdevper);

zeroref:=0;

zeroref;

SVAPO

amory  
#4 Posted : Sunday, October 28, 2007 4:46:23 PM(UTC)
amory

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 4/18/2007(UTC)
Posts: 99
Location: sydney australia

is this SVAPO indicator of any value? I have tried it out on a few charts & cannot seem to find any predictive qualities in it.

perhaps I am not using it correctly. any advice would be appreciated.

minnamor  
#5 Posted : Monday, October 29, 2007 11:45:16 PM(UTC)
minnamor

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 4/27/2005(UTC)
Posts: 126
Location: Italy

In TASC's Novmber Traders'Tips it is stated that a second article is coming describing possible applications. Thanks to the author for his attention.

Regards.

Users browsing this topic
Guest (Hidden)
Similar Topics
question on SVAPO code (MetaStock)
by u978 9/24/2013 8:49:49 AM(UTC)
SVAPO (Formula Assistance)
by swordman 2/6/2008 10:10:16 AM(UTC)
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.