PureBytes Links
Trading Reference Links
|
Andy, try this simple MS indicator:
---8<-----------------------------
{ SMA/price difference %.
Visit http://www.metastocktools.com for more.}
{ User input }
pds:=Input("SMA periods",1,2600,50);
{ SMA }
SMA:=Mov(C,pds,S);
{ SMA/price % difference }
diff:=(C/SMA-1)*100;
{ Plot in own window }
diff
---8<-----------------------------
jose '-)
http://www.metastocktools.com
--- In equismetastock@xxxxxxxxxxxxxxx, "tamskandy" <tamandy@xxx>
wrote:
>
> Hi all
>
> would anyone have any idea on how to calculate the closing price
> value is + or - (%) from 50 MA and 200 MA
>
> Thanks in advanced
> Andy
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/
|