PureBytes Links
Trading Reference Links
|
Hi,
I am trying to Plot a moving average of the trin index.
I would like to create this indicator to use on an index such
as the S+P 500.
I have been trying it like this
XXX = (AdvIssues() / DecIssues()) / (AdvVolume() / DecVolume());
Plot(XXX,"Trin_A",colorRed);
This will plot the trin just fine but I now want a 5-day moving avg
of this.
Graph0= MA( XXX, 5 );
Graph1= MA( XXX, 10 );
This does not work.
What is the difference between a plot and a graph? Which do I use and
how can I plot a 5-day, 10-day or even a 55-day moving avg of the
XXX above on the same plot and then make a Buy Sell scan using cross
overs of this data.
Thanks a Lot!!
Ernie
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Make Money Online Auctions! Make $500.00 or We Will Give You Thirty Dollars for Trying!
http://us.click.yahoo.com/yMx78A/fNtFAA/46VHAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|