PureBytes Links
Trading Reference Links
|
> Enter long
> Mov(C,100,E) > Mov(C,200,E) and
> Mov(C,5,E) > Mov(C,20,E)
>
> Enter short
> Mov(C,100,E)< Mov(C,200,E) and
> Mov(C,5,E) < Mov(C,20,E)
Looks fine. However, you may want to use the
Cross version:
Enter Long
Mov(C,100,E) > Mov(C,200,E) AND
Cross(Mov(C,5,E),Mov(C,20,E))
That way you only get one entry per "trend,"
rather than automatically going back in on the
next bar after being stopped out.
Owen Davies
|