PureBytes Links
Trading Reference Links
|
Hello,
'C' is reserved variable (CLOSE). 'A' was reserved in older version. There is also no 'ticker' variable.
Don't forget to use AddTextColumn instead of AddColumn
Instead use this:
PartA = "http://www.something.com";
PartB = Name(); // this gives ticker symbol
PartC = "something else";
Link = PartA + PartB + PartC;
AddTextColumn( Link, "Link" );
Filter = ... your code...
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "zimm630" <zim630@xxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Wednesday, February 25, 2004 4:29 PM
Subject: [amibroker] Exploration Question
> I am looking to include a column in an exploration that will give me
> hyperlink's for further research. The hyperlink will include the
> ticker symbol in the middle. I would then export the exploration to
> excel and hopefully be able to click on the links of those I desire.
>
> A=http://xxxxxxxx;
> B=Ticker;
> C=xxxxxx
> Link= A+B+C;
>
> I get an error message that B is being used without being initialized.
>
> Any help is greatly appreciated - Thanks in advance
>
> Bill
>
>
>
> 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
>
>
>
>
>
>
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/
|