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
A:=RSI(18)=Trough(1,RSI(18),14);
B:=RSI(18)=Peak(1,RSI(18),14);
State:=If(BarsSince(A)<BarsSince(B),1,0);
State=1
Short
A:=RSI(18)=Trough(1,RSI(18),14);
B:=RSI(18)=Peak(1,RSI(18),14);
State:=If(BarsSince(A)<BarsSince(B),1,0);
State=0
Symbols
Long entry
A:=RSI(18)=Trough(1,RSI(18),14);
B:=RSI(18)=Peak(1,RSI(18),14);
State:=If(BarsSince(A)<BarsSince(B),1,0);
State>Ref(State,-1)
Short entry
A:=RSI(18)=Trough(1,RSI(18),14);
B:=RSI(18)=Peak(1,RSI(18),14);
State:=If(BarsSince(A)<BarsSince(B),1,0);
State<Ref(State,-1)
DO NOT EVEN THINK OF TRADING THIS SYSTEM
Try and figure it out?
|