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

Notification

Icon
Error

Options
Go to last post Go to first unread
henry1224  
#1 Posted : Saturday, October 30, 2010 4:36:11 PM(UTC)
henry1224

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 10/29/2004(UTC)
Posts: 1,394
Location: Glastonbury, CT

Was thanked: 2 time(s) in 2 post(s)
Here are several charts using the various Pring KST

UserPostedImage

UserPostedImage

UserPostedImage

UserPostedImage

UserPostedImage

UserPostedImage

here are the following formulas

KST 3 4 6 10

pds1:=Input("MA1 periods",1,260,3);
pds2:=Input("MA2 periods",2,260,3);
plt:=Input("[1]roc$ [2]roc%",1,2,1);
prc:=Input("Price: [1]Close [2]WghtCl [3]Median [4]Typ [5]Avg",1,5,1);
prc:=If(prc=1,C,If(prc=2,WC(),If(prc=3,MP(),
If(prc=4,Typ(),(O+H+L+C)/4))));
KSTP:= (Mov(ROC(prc,3,%),3, E)*1)+(Mov(ROC(prc,4,%),4, E)*2)+(Mov(ROC(prc,6,%),6, E)*3)+(Mov(ROC(prc,10,%),8, E)*4)/10;
KSTD:= (Mov(ROC(prc,3,$),3, E)*1)+(Mov(ROC(prc,4,$),4, E)*2)+(Mov(ROC(prc,6,$),6, E)*3)+(Mov(ROC(prc,10,$),8, E)*4)/10;
KST:=If(plt=1,KSTD,KSTP);
UZ:=Mov(KST,34,S)+(1.3185 *Stdev(KST,34));
LZ:=Mov(KST,34,S)-(1.3185 *Stdev(KST,34));
Sig:=Mov(Mov(KST,pds1,S),pds2,S);
rev:=Input("Reverse trade signals? [1]Yes [0]No",0,1,0);
{* Entry conditions *}
entry:= {<- Do not change entry parameter name}
Cross(KST,Sig);
{* Exit conditions *}
exit:= {<- Do not change exit parameter name}
Cross(Sig,KST);


Pring KST 9 12 18 24

pds1:=Input("MA1 periods",1,260,3);
pds2:=Input("MA2 periods",2,260,3);
plt:=Input("[1]roc$ [2]roc%",1,2,1);
prc:=Input("Price: [1]Close [2]WghtCl [3]Median [4]Typ [5]Avg",1,5,1);
prc:=If(prc=1,C,If(prc=2,WC(),If(prc=3,MP(),
If(prc=4,Typ(),(O+H+L+C)/4))));
KSTP:= (Mov(ROC(prc,9,%),6, S)*1)+(Mov(ROC(prc,12,%),6, S)*2)+(Mov(ROC(prc,18,%),6, S)*3)+(Mov(ROC(prc,24,%),9, S)*4)/10;
KSTD:= (Mov(ROC(prc,9,$),6, S)*1)+(Mov(ROC(prc,12,$),6, S)*2)+(Mov(ROC(prc,18,$),6, S)*3)+(Mov(ROC(prc,24,$),9, S)*4)/10;
KST:=If(plt=1,KSTD,KSTP);
UZ:=Mov(KST,34,S)+(1.3185 *Stdev(KST,34));
LZ:=Mov(KST,34,S)-(1.3185 *Stdev(KST,34));
Sig:=Mov(Mov(KST,pds1,S),pds2,S);
rev:=Input("Reverse trade signals? [1]Yes [0]No",0,1,0);
{* Entry conditions *}
entry:= {<- Do not change entry parameter name}
Cross(KST,Sig);
{* Exit conditions *}
exit:= {<- Do not change exit parameter name}
Cross(Sig,KST);


Pring KST 1013 15 20

pds1:=Input("MA1 periods",1,260,3);
pds2:=Input("MA2 periods",2,260,3);
plt:=Input("[1]roc$ [2]roc%",1,2,1);
prc:=Input("Price: [1]Close [2]WghtCl [3]Median [4]Typ [5]Avg",1,5,1);
prc:=If(prc=1,C,If(prc=2,WC(),If(prc=3,MP(),
If(prc=4,Typ(),(O+H+L+C)/4))));
KSTP:= (Mov(ROC(prc,10,%),10, E)*1)+(Mov(ROC(prc,13,%),13, E)*2)+(Mov(ROC(prc,15,%),15, E)*3)+(Mov(ROC(prc,20,%),20, E)*4)/10;
KSTD:= (Mov(ROC(prc,10,$),10, E)*1)+(Mov(ROC(prc,13,$),13, E)*2)+(Mov(ROC(prc,15,$),15, E)*3)+(Mov(ROC(prc,20,$),20, E)*4)/10;
KST:=If(plt=1,KSTD,KSTP);
UZ:=Mov(KST,34,S)+(1.3185 *Stdev(KST,34));
LZ:=Mov(KST,34,S)-(1.3185 *Stdev(KST,34));
Sig:=Mov(Mov(KST,pds1,S),pds2,S);
rev:=Input("Reverse trade signals? [1]Yes [0]No",0,1,0);
{* Entry conditions *}
entry:= {<- Do not change entry parameter name}
Cross(KST,Sig);
{* Exit conditions *}
exit:= {<- Do not change exit parameter name}
Cross(Sig,KST);

Pring KST 1015 20 30

pds1:=Input("MA1 periods",1,260,3);
pds2:=Input("MA2 periods",2,260,3);
plt:=Input("[1]roc$ [2]roc%",1,2,1);
prc:=Input("Price: [1]Close [2]WghtCl [3]Median [4]Typ [5]Avg",1,5,1);
prc:=If(prc=1,C,If(prc=2,WC(),If(prc=3,MP(),
If(prc=4,Typ(),(O+H+L+C)/4))));
KSTP:= (Mov(ROC(prc,10,%),10, S)*1)+(Mov(ROC(prc,15,%),10, S)*2)+(Mov(ROC(prc,20,%),15, S)*3)+(Mov(ROC(prc,30,%),20, S)*4)/10;
KSTD:= (Mov(ROC(prc,10,$),10, S)*1)+(Mov(ROC(prc,15,$),10, S)*2)+(Mov(ROC(prc,20,$),15, S)*3)+(Mov(ROC(prc,30,$),20, S)*4)/10;
KST:=If(plt=1,KSTD,KSTP);
UZ:=Mov(KST,34,S)+(1.3185 *Stdev(KST,34));
LZ:=Mov(KST,34,S)-(1.3185 *Stdev(KST,34));
Sig:=Mov(Mov(KST,pds1,S),pds2,S);
rev:=Input("Reverse trade signals? [1]Yes [0]No",0,1,0);
{* Entry conditions *}
entry:= {<- Do not change entry parameter name}
Cross(KST,Sig);
{* Exit conditions *}
exit:= {<- Do not change exit parameter name}
Cross(Sig,KST);

Pring KST 39 52 78 104

pds1:=Input("MA1 periods",1,260,3);
pds2:=Input("MA2 periods",2,260,3);
plt:=Input("[1]roc$ [2]roc%",1,2,1);
prc:=Input("Price: [1]Close [2]WghtCl [3]Median [4]Typ [5]Avg",1,5,1);
prc:=If(prc=1,C,If(prc=2,WC(),If(prc=3,MP(),
If(prc=4,Typ(),(O+H+L+C)/4))));
KSTP:= (Mov(ROC(prc,39,%),26, E)*1)+(Mov(ROC(prc,52,%),26, E)*2)+(Mov(ROC(prc,78,%),26, E)*3)+(Mov(ROC(prc,104,%),39, E)*4)/10;
KSTD:= (Mov(ROC(prc,39,$),26, E)*1)+(Mov(ROC(prc,52,$),26, E)*2)+(Mov(ROC(prc,78,$),26, E)*3)+(Mov(ROC(prc,104,$),39, E)*4)/10;
KST:=If(plt=1,KSTD,KSTP);
UZ:=Mov(KST,34,S)+(1.3185 *Stdev(KST,34));
LZ:=Mov(KST,34,S)-(1.3185 *Stdev(KST,34));
Sig:=Mov(Mov(KST,pds1,S),pds2,S);
rev:=Input("Reverse trade signals? [1]Yes [0]No",0,1,0);
{* Entry conditions *}
entry:= {<- Do not change entry parameter name}
Cross(KST,Sig);
{* Exit conditions *}
exit:= {<- Do not change exit parameter name}
Cross(Sig,KST);

Pring KST 50 65 75 100

pds1:=Input("MA1 periods",1,260,3);
pds2:=Input("MA2 periods",2,260,3);
plt:=Input("[1]roc$ [2]roc%",1,2,1);
prc:=Input("Price: [1]Close [2]WghtCl [3]Median [4]Typ [5]Avg",1,5,1);
prc:=If(prc=1,C,If(prc=2,WC(),If(prc=3,MP(),
If(prc=4,Typ(),(O+H+L+C)/4))));
KSTP:= (Mov(ROC(prc,50,%),50, S)*1)+(Mov(ROC(prc,65,%),65, S)*2)+(Mov(ROC(prc,75,%),75, S)*3)+(Mov(ROC(prc,100,%),100, S)*4)/10;
KSTD:= (Mov(ROC(prc,50,$),50, S)*1)+(Mov(ROC(prc,65,$),65, S)*2)+(Mov(ROC(prc,75,$),75, S)*3)+(Mov(ROC(prc,100,$),100, S)*4)/10;
KST:=If(plt=1,KSTD,KSTP);
UZ:=Mov(KST,34,S)+(1.3185 *Stdev(KST,34));
LZ:=Mov(KST,34,S)-(1.3185 *Stdev(KST,34));
Sig:=Mov(Mov(KST,pds1,S),pds2,S);
rev:=Input("Reverse trade signals? [1]Yes [0]No",0,1,0);
{* Entry conditions *}
entry:= {<- Do not change entry parameter name}
Cross(KST,Sig);
{* Exit conditions *}
exit:= {<- Do not change exit parameter name}
Cross(Sig,KST);
johnl  
#2 Posted : Saturday, October 30, 2010 7:33:21 PM(UTC)
johnl

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 11/7/2005(UTC)
Posts: 602

How does VSTPro compare with TradeSim?
henry1224  
#3 Posted : Sunday, October 31, 2010 12:43:48 PM(UTC)
henry1224

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 10/29/2004(UTC)
Posts: 1,394
Location: Glastonbury, CT

Was thanked: 2 time(s) in 2 post(s)
I'm just getting used to VST Pro, but from what I've done with it,I would say that it is far superior to any add-on or system tester that is out there. The free version is great, but VST Pro just blows everything away. You get systems, explorations and templates to experts that enable you to see exactly what you are risking when you take on a trade.

you open a chart with a template, load about 2000 periods, click on an indicator make a change,then refresh the chart twice and you instantly see the change in profit and the amount of risk that is involved. It gives you recommended leverage and more.

I really have to give Jose Silva a tip of the cap for developing this outstanding Add-on.

I have over 1000 systems and even though they look great on a chart, it's the little whipsaws that eat away from the total profit line. With VST Pro, you see everything. It helps breakdown the truly good systems from the hype of the holy grails!

It helps you see where your systems are going to fail, and where you will see the most reward.


henry1224  
#4 Posted : Sunday, October 31, 2010 1:06:49 PM(UTC)
henry1224

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 10/29/2004(UTC)
Posts: 1,394
Location: Glastonbury, CT

Was thanked: 2 time(s) in 2 post(s)
this is from the Metastocktools.com web site

How does VSTpro compare with TradeSim?

A:
VSTpro features not found in TradeSim:
* CRE technology (Change, Refresh, Experiment).
* Instant visual representation of Profit, Risk, Risk/Reward ratio for each individual chart.
* Real-life risk % calculation based on trade drawdowns.
* Individual Position and Leverage suggestions for each security based on customized risk levels.
* Intelligent optimizer which minimizes any curve-fitting effect.
* Powerful and profitable strategy included.
* 90+32 trading strategies with powerful Market Trend Filter.
* Mean-based backtest statistics, rather than averages which are often skewed by outliers.
* Excellent feedback and additional strategy development from professional trader group in private VSTpro forum.
* Many other minor features unique to VSTpro.

TradeSim features not found in VSTpro:
* Portfolio backtesting.
* Monte Carlo simulations.
* Several other minor simulation stats.

Normal 0 false false false EN-US X-NONE X-NONE /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:""; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin:0in; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri","sans-serif"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:"Times New Roman"; mso-fareast-theme-font:minor-fareast; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin;}

http://www.compuvision.com.au


Users browsing this topic
Guest (Hidden)
Similar Topics
Pring KST Short Term Crossover Expert w Pivot Stops (Formula Assistance)
by henry1224 9/8/2005 1:10:00 AM(UTC)
Pring KST Short Term Crossover Expert w ATS Win Loss Trend (Formula Assistance)
by henry1224 9/8/2005 12:53:16 AM(UTC)
Pring KST Short Term Crossover Expert w Trend Direction (Formula Assistance)
by henry1224 9/8/2005 12:40:27 AM(UTC)
Pring KST Short Term Crossover Expert (Formula Assistance)
by henry1224 9/8/2005 12:23:26 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.