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

Notification

Icon
Error

Options
Go to last post Go to first unread
imdyakov  
#1 Posted : Friday, December 3, 2010 4:33:18 AM(UTC)
imdyakov

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 12/3/2010(UTC)
Posts: 4

Please add Guppy Trading Sytem based on GMMA with stops and Counter Back Line. Or replace the script language so it was possible to make (as it was sugested it could be made as add-on for C++ for example).
henry1224  
#2 Posted : Saturday, December 4, 2010 4:24:27 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)
UserPostedImage

using a long system, it works for up trends but fails in sideways or down trends.

It has a 23% win rate and max risk over 60%
imdyakov  
#3 Posted : Monday, December 6, 2010 12:15:14 PM(UTC)
imdyakov

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 12/3/2010(UTC)
Posts: 4

What are you using in this screenshot? Is that a spetial add-on to MetaStock?
henry1224  
#4 Posted : Monday, December 6, 2010 12:40:52 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)
the indicator is a weighted Guppy MMA osc.

the system is created for using a signal or overbought and oversold levels.

the system results are from an add-on "VST Pro" www.metastocktools.com.

with this add-on,you are able to test which system would provide the best return on your investment based on risk/reward ratios.Whichever system you test it will give you the profit for a signal crossing based system or an overbought/oversold based system and at different levels


henry1224  
#5 Posted : Monday, December 6, 2010 12:53: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)
OB:=Input("over bought level",-20,20,0);
OS:=Input("over sold level",-20,20,0);
Sys:= Input("Systems[1]Signal [2]OB/OS levels",1,2,1);
Display:= Input("Systems[1]Signals [2]Indicator",1,2,1);
M330:=If(OscP(3,30,E,%)>0,+6,-6);
M535:=If(OscP(5,35,E,%)>0,+5,-5);
M840:=If(OscP(8,40,E,%)>0,+4,-4);
M1045:=If(OscP(10,45,E,%)>0,+3,-3);
M1250:=If(OscP(12,50,E,%)>0,+2,-2);
M1560:=If(OscP(15,60,E,%)>0,+1,-1);
A:=(M330 + M535 + M840 + M1045 + M1250 + M1560);
B:=Ref(A,-1);

{* Entry conditions *}
entry:= {<- Do not change entry parameter name}
If(Sys=1,Cross(A,B),Cross(A,OS));

{* Exit conditions *}
exit:= {<- Do not change exit parameter name}
If(Sys=1,Cross(B,A),Cross(OB,A));

{Display}
If(Display=1,entry,B);
If(Display=1,-exit,A);
henry1224  
#6 Posted : Monday, December 6, 2010 1:37:45 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)
UserPostedImage

ADM the above system with a trailing stop

My settings were 0/-5/2/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.