PureBytes Links
Trading Reference Links
|
Dingo.
Thanks. Just what I wanted.
b
--- dingo <dingo@xxxxxxxxxxxx> wrote:
> Since the strExtract only works with commas that won't
> help.
>
> dash = strFind(Name(), "-");
> if (dash > 0)
> { Ticker = strLeft(Name(), dash -1);
> flag = strmid(Name(), dash+1, 1);
>
> index = Flag == "I";
> London = Flag == "L";
> }
> else
> {
> your code here for Name() without a "-" in it
> }
>
> Or since this will be used so much maybe a kind soul on
> the dll forum could
> write us a dll to do it.
>
> d
>
>
> _____
>
> From: b519b [mailto:b519b@xxxxxxxxx]
> Sent: Tuesday, March 02, 2004 1:17 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Code challenge caused by CSI's new
> ticker extension
>
>
> My AFL code to automatically create watchists no longer
> works. The
> following worked when CSI gave its index ticker names
> like:
>
> RUT-I
>
> index = StrRight( Name(), 2) == "_i"; //was always at the
> end.
> if(index) CategoryAddSymbol( "", categoryIndex, 1 ) ;
>
> But now CSI has appended its unique ticker number to each
> ticker - a
> good way to make sure active and inactive stocks with the
> same
> symbol will have two distinct and unique tickers when
> imported into
> AB. So RUT-I new ticker in AB is
>
> RUT-I-6754
>
> And my StrRight code will not work. Any ideas on how to
> change my
> code would be appreciated. The "brute force" approach
> would be
> something like the following, but I am hoping to find a
> more elegant
> way to code this.
>
> p4 = StrMid( Name(), 4, 2);
> p5 = StrMid( Name(), 5, 2); //brute force
> p6 = StrMid( Name(), 5, 2); //brute force
> etc.
> index = p4 == "-I" OR p5 == "-I" OR p6 == "-I" ;
> London = p4 == "-L" OR p5 == "-L" OR p6 == "-L" ;
> etc.
> if(index) CategoryAddSymbol( "", categoryWatchlist, 6 ) ;
> if(London) CategoryAddSymbol( "", categoryWatchlist, 7 )
> ;
> etc.
>
>
>
>
>
> 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 Sponsor
>
> ADVERTISEMENT
>
>
>
>
<http://rd.yahoo.com/SIG=12c6idhfj/M=274551.4550177.5761904.1261774/D=egroup
>
web/S=1705632198:HM/EXP=1078294658/A=2019528/R=2/SIG=14146bost/*http://ad.do
>
ubleclick.net/jump/N3349.yahoo1/B1282054.27;abr=!ie4;abr=!ie5;sz=300x250;cod
> e=18634;dcopt=rcl;ord=1078208258584120?> Click HereClick
> Here
>
>
<http://us.adserver.yahoo.com/l?M=274551.4550177.5761904.1261774/D=egroupweb
> /S=:HM/A=2019528/rand=357751550>
>
>
> _____
>
> 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
>
<mailto:amibroker-unsubscribe@xxxxxxxxxxxxxxx?subject=Unsubscribe>
>
>
>
> * Your use of Yahoo! Groups is subject to the Yahoo!
> Terms of Service
> <http://docs.yahoo.com/info/terms/> .
>
>
>
__________________________________
Do you Yahoo!?
Yahoo! Search - Find what you’re looking for faster
http://search.yahoo.com
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/
|