This will list the watchlists to a chart window:
Title = "\nWatch List: ";
for( i = 0; CategoryGetName( categoryWatchlist, i )!= ""; i++ )
{
if( InWatchList( i ) )
Title = Title+ "\n " + CategoryGetName
( categoryWatchlist, i );
}
--- In [email protected], "murthysuresh" <[EMAIL PROTECTED]> wrote:
>
> i want to print the list of watchlists my stock belongs to either
in
> commentary or in title. here is the logic. i know how to do a few
> things and dont know the rest and need some help.
>
> my algorithm is simple and basic
> 1. get list of all watchlists in my app. dunno how to do this
> 2. loop thro the list and check if symbol is in that watchlist.use
> INWATCHLISTNAME
> 3. if 2 matchies, then Title=Title + WatchlistName
>
>
> I could use some help for step 1.
> REgads
>
> Seede
>