----- Original Message -----
Sent: Friday, November 18, 2005 8:13
PM
Subject: Re: [amibroker] Strright or
Strleft ?
Hi Anthony,
If they all have 2 chars before the underscore,
you can use
Filter = strright( strleft( name(), 3
) , 1 ) == "_";
If they all have 3 chars after the
underscore, you can use
Filter = strleft( strright( name(), 4
), 1 ) == "_";
Steve
----- Original Message -----
Sent: Friday, November 18, 2005 7:49
PM
Subject: [amibroker] Strright or
Strleft ?
Hello,
I have some symbols in my database with names
like this: xx_xxx,
I want to filter out and run an exploration to
locate these tickers..
I tried the following...
Filter=strright(name(),3)=="_";
What should the correct Syntax
be....
Thank you
Anthony