PureBytes Links
Trading Reference Links
|
It's plotting ok at this end. You may not have enough periods loaded
in the chart - you'd need a minimum of 252 periods loaded as per
indicator default.
Try adding a value of 50 to the output, so you can rule out plot
colour problems:
---8<-------------------------------------
pds1:=Input("small SMA periods",1,2520,21);
pds2:=Input("large SMA periods",1,2520,252);
pdsN:=Input("normalizing periods (1=none)",
1,2520,252);
a:=Mov(C,pds1,S);
b:=Mov(C,pds2,S);
d:=a-b;
norm:=(d-LLV(d,pdsN))/(HHV(d,pdsN)-LLV(d,pdsN)
+.000001)*100;
50;norm
---8<-------------------------------------
jose '-)
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/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/
|