PureBytes Links
Trading Reference Links
|
Ed:
It is always helpful if you or anyone having a problem would describe
what happened, like error message such and such or the screen was blank
or....
That said, try this
MS = GetExtraData("MoneyStream");
Plot(MS, "MoneyStream",6,1);
Plot(MA(MS,20),"20dma of MS",coloryellow,1);
Ken
-----Original Message-----
From: Ed [mailto:reach1136@xxxxxxxxx]
Sent: Thursday, December 18, 2003 9:37 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] AFL help needed!
Good Morning.
Below is the AFL for Worden's "Moneystream" (from TJ). Graph0 plots
the indicator just fine, but I am struggling to get a 20day MA of
Moneystream to overlay the indicator. My code just plots the MA
without the indicator..can someone tell me what I'm doing wrong?
Moneystream (works fine)
Graph0 = GetExtraData("MoneyStream");
My code for MA - what's wrong?
Plot( MA(GetExtraData ("Moneystream"), 20 ), "MAMoneystream",
colorBlue);
Thanks is advance.
EdM
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
Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
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
Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|