PureBytes Links
Trading Reference Links
|
JS> ANY indicator can be turned into an oscillator through a
JS> stochastic-like process of normalization.
Jose,
What's happen if the indicator is a *ratio* so it can go to
infinity (something / 0) ?
Is it possible to make the process of normalization as you said ?
Best regards,
Pablo
This indicator CAN NOT be normalized:
{ Start }
lookback:=100;
EMA:=Mov(C,50,E);
DaysAbove:=Sum(C>EMA,lookback);
DaysBelow:=Sum(C<EMA,lookback);
Ratio:=DaysAbove/DaysBelow;
Ratio;
{ End }
------------------------ Yahoo! Groups Sponsor --------------------~-->
Great things are happening at Yahoo! Groups. See the new email design.
http://us.click.yahoo.com/qlNZQC/hOaOAA/cosFAA/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/
|