PureBytes Links
Trading Reference Links
|
lookback:=100;
EMA:=Mov(C,50,E);
DaysAbove:=Sum(If(C>EMA,1,0),lookback);
DaysBelow:=Sum(If(C<EMA,1,0),lookback);
<
Ratio:=DaysAbove/DaysBelow;
In DaysBelow should be "C<EMA" : instead of "C>EMA"
Sorry!!
Pablo
PS: anyway, I'm sure if the formula is fine
------------------------ Yahoo! Groups Sponsor --------------------~-->
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|