Tip,
There are a few ways to do this but one is that you can import all the
NYSE etc symbols into a watch list then run the following to move them
into a market category:
if(InWatchList( 63 ))
CategoryAddSymbol("",categoryMarket,1);
Buy=0;
Filter=1;
Change the categoryMarket to your category number. Repeat for Amex,
NASDAQ etc.
Once they are there you can they access them using AFL for filters etc.
(categoryMarket==1)
Regards,
Duke Jones, CMT
tipequity wrote:
>
> I like to import market designation for US stock tickers. I have a csv
> file that contains the symbol and its primary stock exchange. The
> following is a sample
>
> AAUK, Nasdaq
> ABLE, Nasdaq
> AEG, NYSE
> DRY, AMEX
>
> Can anybody help me to do this?
>
> Thanks
>
>
--