PureBytes Links
Trading Reference Links
|
Brooke,
I wanted to do explorations for securities that had formed a shark
pattern but had not broken above/below the
signal bar. I tried the exploration below but suspect something is wrong.
Any help will be appreciated.
Murray
Filter
Symmetry:=.28;
Apex:=(H+L)/2;
WB:=Ref(H,-2)-Ref(L,-2);
Shark:=If((H<Ref(H,-1) AND L>Ref(L,-1) AND Ref(H,-1)<Ref(H,-2) AND
Ref(L,-1)>Ref(L,-2))=1,If(Apex <= (Ref(H,-2)-(WB*Symmetry)) AND Apex >=
(Ref(L,-2)+(WB*Symmetry)) ,1,0),0);
Shark;
|