PureBytes Links
Trading Reference Links
|
<SPAN
class=674595515-17072003>Dennis,
you
have named the Param for SP "EMA Period" and also named the Param for S "Ema
Period"
<SPAN
class=674595515-17072003>
try
naming sp Something like "PDS1" and s something like
"PDS2"...
Regards,
Jayson
<FONT face=Tahoma
size=2>-----Original Message-----From: theoldchartreader
[mailto:theoldchartreader@xxxxxxxxx]Sent: Thursday, July 17, 2003
11:51 AMTo: amibroker@xxxxxxxxxxxxxxxSubject: [amibroker]
How can I get more than two Param to display on
chart?HI,This is the formula that I am using, it
will only display one EMA and the Bands. I would really like to get ti to
display all three .Does any one have any ideas on how this can be
done.Thank you,Dennissp = Param( "EMA Period", 12, 2,
100 );r = EMA(C, sp );Plot( r, "EMA("+WriteVal(sp,1.0)+")",
ParamColor("", colorGreen ) ); s = Param( "EMA Period", 10, 2, 100
);m = EMA(C, s );Plot( m, "EMA("+WriteVal(s,1.0)+")", ParamColor("",
colorRed ) ); x= Param( "cond1", .05, .001,.2,.001 ); cond1=
EMA(C,13)+EMA(C,13)*x;Cond2= EMA(C,13)-EMA(C,13)*x;Plot(C,
"Price",colorYellow, styleBar );Plot(cond1,"upper
band",ParamColor("",colorBlue),1);Plot(cond2,"Lower
band",ParamColor("",colorBlue),1);Send
BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
Yahoo! Groups Sponsor
ADVERTISEMENT
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 the Yahoo! Terms of Service.
|