PureBytes Links
Trading Reference Links
|
Could you please tell me how to add this trailing stop an
Expert Commentary?
Thanks much,
larryTAKEOUT@xxxxxxxxxx
------------------------------------------
SELLSTOP:=C<(HighestSince(1,BUYCRITERIA,HIGH)*.95);
COVERSTOP:=C>(LowestSince(1,SHORTCRITERIA,LOW)*1.05);
State:=If(Cum(1)=1,0,
If(BUY,1,
If(SHORT,-1,
If((SELL AND PREV=1) OR
(sellstop AND PREV=1) OR
(COVER AND PREV=-1) OR
(coverstop AND PREV=-1),0,
PREV))));
State=0 AND Ref(State,-1)=1)
Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/Metastockusers/
To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|