Parabolic SAR

#1
Hi Guys,

I am currently trading the China market and would like your assistance with a metastock forumula (my programing skills = 0)

I have looking for a metastock search that will find the first day that the low is higher than the parabolic sar value. So the low closing above the parabolic sar (long search)

Any assistance will be greatly appreciated :)
 

oxusmorouz

Well-Known Member
#2
Hi Guys,

I am currently trading the China market and would like your assistance with a metastock forumula (my programing skills = 0)

I have looking for a metastock search that will find the first day that the low is higher than the parabolic sar value. So the low closing above the parabolic sar (long search)

Any assistance will be greatly appreciated :)
Try putting each and every step as a variable

a:= Parabolic SAR;
b:= Ref(L,-1) < Ref(a,-1); {Yesterday's low is lesser than yesterday's parabolic SAR}
d:= L > a; {Today's low is greater than today's SAR}
f:= b and d; {Both b and d conditions should be satisfied}
f {Return's f}
 

Similar threads