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

Notification

Icon
Error

Options
Go to last post Go to first unread
miltfall  
#1 Posted : Tuesday, March 22, 2005 4:16:17 PM(UTC)
miltfall

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 3/22/2005(UTC)
Posts: 9

Has anyone developed the subject test with optimizations? Or even without optimizations that I can convert to optmize myself?
Patrick  
#2 Posted : Thursday, March 24, 2005 6:58:19 PM(UTC)
Patrick

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 9/8/2004(UTC)
Posts: 2,266

Was thanked: 1 time(s) in 1 post(s)
hi Miltfall, I will help you design the system test as long as you give me specific requirements ... Let me know what system should do and etc ... Patrick PS: I'm moving this post to the formula section
henry1224  
#3 Posted : Saturday, March 26, 2005 3:24:56 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)
highlights long: A1:=If(C>Mov(C,50,S) ,1,0); A2:=If(C>SAR(.02,.2),1,0); B:=If(A1=1 AND A2=1,-1,If(A1=0 AND A2=0,1,0)); B=-1 short: A1:=If(C>Mov(C,50,S) ,1,0); A2:=If(C>SAR(.02,.2),1,0); B:=If(A1=1 AND A2=1,-1,If(A1=0 AND A2=0,1,0)); B=1 out: A1:=If(C>Mov(C,50,S) ,1,0); A2:=If(C>SAR(.02,.2),1,0); B:=If(A1=1 AND A2=1,-1,If(A1=0 AND A2=0,1,0)); B=0 symbols tab long entry: A1:=If(C>Mov(C,50,S) ,1,0); A2:=If(C>SAR(.02,.2),1,0); B:=If(A1=1 AND A2=1,-1,If(A1=0 AND A2=0,1,0)); B=-1 AND Ref(B,-1)>=0 shortentry: A1:=If(C>Mov(C,50,S) ,1,0); A2:=If(C>SAR(.02,.2),1,0); B:=If(A1=1 AND A2=1,-1,If(A1=0 AND A2=0,1,0)); B=1 AND Ref(B,-1)<=0 long exit: A1:=If(C>Mov(C,50,S) ,1,0); A2:=If(C>SAR(.02,.2),1,0); B:=If(A1=1 AND A2=1,-1,If(A1=0 AND A2=0,1,0)); B=0 AND Ref(B,-1)=-1 short exit: A1:=If(C>Mov(C,50,S) ,1,0); A2:=If(C>SAR(.02,.2),1,0); B:=If(A1=1 AND A2=1,-1,If(A1=0 AND A2=0,1,0)); B=0 AND Ref(B,-1)=1
miltfall  
#4 Posted : Saturday, March 26, 2005 4:12:10 PM(UTC)
miltfall

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 3/22/2005(UTC)
Posts: 9

Patrick wrote:
hi Miltfall, I will help you design the system test as long as you give me specific requirements ... Let me know what system should do and etc ... Patrick PS: I'm moving this post to the formula section
Quote:
Hi Patrick - Thanks for the offer...hope I can explain myself. The Parabolic SAR has two values Step: .02 (default) and Maximum:.2 (default). I don't know what those values relate to other than the Stop & Repeat itself. What I'd like to do would be to have an optimized Systems Test with other than just those variables, maybe Step: .005 thru .03 by .02, and Maximum: .1 thru .3 by .02, if that would make sense. I don't see all commodities trading within the same parameters, thus one set of SAR values doesn't seem to me to be the most efficient way to use the indicator. The Systems Test would be to visually look at those values available in the indicator itself. Any help will be greatly appreciated. Thanks again - Milt Fall P. S. I unfamiliar with how to use this forum, so please be patient with me, also. LOL
miltfall  
#5 Posted : Saturday, March 26, 2005 4:13:28 PM(UTC)
miltfall

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 3/22/2005(UTC)
Posts: 9

henry1224 wrote:
highlights long: A1:=If(C>Mov(C,50,S) ,1,0); A2:=If(C>SAR(.02,.2),1,0); B:=If(A1=1 AND A2=1,-1,If(A1=0 AND A2=0,1,0)); B=-1 short: A1:=If(C>Mov(C,50,S) ,1,0); A2:=If(C>SAR(.02,.2),1,0); B:=If(A1=1 AND A2=1,-1,If(A1=0 AND A2=0,1,0)); B=1 out: A1:=If(C>Mov(C,50,S) ,1,0); A2:=If(C>SAR(.02,.2),1,0); B:=If(A1=1 AND A2=1,-1,If(A1=0 AND A2=0,1,0)); B=0 symbols tab long entry: A1:=If(C>Mov(C,50,S) ,1,0); A2:=If(C>SAR(.02,.2),1,0); B:=If(A1=1 AND A2=1,-1,If(A1=0 AND A2=0,1,0)); B=-1 AND Ref(B,-1)>=0 shortentry: A1:=If(C>Mov(C,50,S) ,1,0); A2:=If(C>SAR(.02,.2),1,0); B:=If(A1=1 AND A2=1,-1,If(A1=0 AND A2=0,1,0)); B=1 AND Ref(B,-1)<=0 long exit: A1:=If(C>Mov(C,50,S) ,1,0); A2:=If(C>SAR(.02,.2),1,0); B:=If(A1=1 AND A2=1,-1,If(A1=0 AND A2=0,1,0)); B=0 AND Ref(B,-1)=-1 short exit: A1:=If(C>Mov(C,50,S) ,1,0); A2:=If(C>SAR(.02,.2),1,0); B:=If(A1=1 AND A2=1,-1,If(A1=0 AND A2=0,1,0)); B=0 AND Ref(B,-1)=1
Quote:
Thanks Henry1224 big help. Milt Fall
parabolicsar  
#6 Posted : Wednesday, July 13, 2011 11:01:28 PM(UTC)
parabolicsar

Rank: Newbie

Groups: Registered, Registered Users
Joined: 7/14/2011(UTC)
Posts: 1

Many people has optimised to the trading strategies used by the forex trading chart,that the parabolic SAR has basic system test of indicator that developing of forex trading strategies.

http://www.parabolicsar.org/
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.