PureBytes Links
Trading Reference Links
|
Forgive the sloppy code of last post:
SYM = ParamStr("Symbol","!NQ-D");
BBLEN = Param("Bollinger Band Length",504,63,1260,63);
SD = Param("Std Dev",2,1,4,0.5);
SetForeign(SYM);
Plot(BBandTop(C,BBLEN,SD),"",colorBlue,styleLine);
Plot(BBandBot(C,BBLEN,SD),"",colorBlue,styleLine);
Plot(C,FullName(),colorWhite,styleArea);
"Gary A. Serkhoshian" <serkhoshian777@xxxxxxxxx> wrote:
Hi all,
Can fullname() obtain name of a symbol other than reference symbol? In code below, I'd like fullname() in the plot to give name of the SYM variable. I tried SetForeign, and it didn't work.
SYM = ParamStr("Symbol","!NQ-D");
Plot(SYM, FullName(), colorWhite,styleArea);
Do you Yahoo!?The New Yahoo! Shopping - with improved product search Send BUG REPORTS to bugs@xxxxxxxxxxxxxSend 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.
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
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.
|