|
楼主 |
发表于 2012-10-30 03:40 PM
|
显示全部楼层
chickencoop 发表于 2012-10-30 12:30 PM
Thanks for your excellent charts and analyses. By the way, how could I get the RMO indicator on th ...
RMO is not build-in indicator in TOS. However, you could google "rmo indicator formula" and found it easily on the web. Here is the one that I used -- http://www.traderji.com/amibroker/12427-rmo-code-amibroker-4-9-a.html
SwingTrd1 = 100 * (Close - ((MA(C,2)+
MA(MA(C,2),2)+
MA(MA(MA(C,2),2),2) +
MA(MA(MA(MA(C,2),2),2),2) +
MA(MA(MA(MA(MA(C,2),2),2),2),2) +
MA(MA(MA(MA(MA(MA(C,2),2),2),2),2),2) +
MA(MA(MA(MA(MA(MA(MA(C,2),2),2),2),2),2),2)+
MA(MA(MA(MA(MA(MA(MA(MA(C,2),2),2),2),2),2),2),2)+
MA(MA(MA(MA(MA(MA(MA(MA(MA(C,2),2),2),2),2),2),2), 2),2)+
MA(MA(MA(MA(MA(MA(MA(MA(MA(MA(C,2),2),2),2),2),2), 2),2),2),2))
/10))/(HHV(C,10)-LLV(C,10));
RMO= EMA(SwingTrd1,81); |
|