PureBytes Links
Trading Reference Links
|
> RAVI=Absolute(100*(7 Day SMA - 65 Day SMA)/65 SMA )
RAVI:=abs(100*(mov(c,7,s)-mov(c,65,s))/mov(c,65,s));
> long- the buy on close if todays close is higher than the highest
> high of last 20 days
Long:=C>ref(hhv(h,20),-1);
> short- if todays close is lower than the lowest low of last 20 days
Short:=C<ref(llv(l,20),-1);
> 3)TRend Following system
> Long- if the three consecutive closes is above 65 D SMA
Long:=sum(C>mov(c,65,s),3)>=3;
> Short- if the three consecutive close is below 65 D SMA
Short:=sum(C<mov(c,65,s),3)>=3;
I haven't tested these yet, just wrote then off the cuff, so if there
are any queries or something doesn't work like you wanted it to, just
call.
Hope this helps
wabbit :D
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/
|