[amibroker] Re: getting a list of watchlists that my symbol belongs to

2008-06-22 Thread murthysuresh
wow. this works cool. --- In amibroker@yahoogroups.com, "wjs45244" <[EMAIL PROTECTED]> wrote: > > This will list the watchlists to a chart window: > > Title = "\nWatch List: "; > for( i = 0; CategoryGetName( categoryWatchlist, i )!= ""; i++ ) > { > if( InWatchList( i ) ) >

RE: [amibroker] Re: getting a list of watchlists that my symbol belongs to

2008-06-21 Thread dingo
Won't work - its waaay too simple! 8-) d > -Original Message- > From: amibroker@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of wjs45244 > Sent: Saturday, June 21, 2008 2:16 PM > To: amibroker@yahoogroups.com > Subject: [amibroker] Re: getting a lis

[amibroker] Re: getting a list of watchlists that my symbol belongs to

2008-06-21 Thread wjs45244
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 amibroker@yahoog

[amibroker] Re: getting a list of watchlists that my symbol belongs to

2008-06-20 Thread Mike
> > > > > d > > > > > > > -Original Message- > > > > From: amibroker@yahoogroups.com > > > > [mailto:[EMAIL PROTECTED] On Behalf Of murthysuresh > > > > Sent: Thursday, June 19, 2008 8:41 PM > > > > To: amibr

RE: [amibroker] Re: getting a list of watchlists that my symbol belongs to

2008-06-20 Thread dingo
@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of murthysuresh > Sent: Friday, June 20, 2008 6:23 AM > To: amibroker@yahoogroups.com > Subject: [amibroker] Re: getting a list of watchlists that my > symbol belongs to > > --- In amibroker@yahoogroups.com, "dingo"

[amibroker] Re: getting a list of watchlists that my symbol belongs to

2008-06-20 Thread murthysuresh
> > > If you still can't figure it out - I'll try to get it working Fri. > > > > d > > > > > -Original Message- > > > From: amibroker@yahoogroups.com > > > [mailto:[EMAIL PROTECTED] On Behalf Of murthysuresh > > > Sent

[amibroker] Re: getting a list of watchlists that my symbol belongs to

2008-06-20 Thread murthysuresh
gt; > > -Original Message- > > From: amibroker@yahoogroups.com > > [mailto:[EMAIL PROTECTED] On Behalf Of murthysuresh > > Sent: Thursday, June 19, 2008 8:41 PM > > To: amibroker@yahoogroups.com > > Subject: [amibroker] Re: getting a list of watchlis

RE: [amibroker] Re: getting a list of watchlists that my symbol belongs to

2008-06-19 Thread dingo
ps.com > Subject: RE: [amibroker] Re: getting a list of watchlists > that my symbol belongs to > > Put in some _TRACE commands to see if you're getting what you > expect from > the fgets. > > If you still can't figure it out - I'll try to get it working Fri. &g

RE: [amibroker] Re: getting a list of watchlists that my symbol belongs to

2008-06-19 Thread dingo
h > Sent: Thursday, June 19, 2008 8:41 PM > To: amibroker@yahoogroups.com > Subject: [amibroker] Re: getting a list of watchlists that my > symbol belongs to > > --- In amibroker@yahoogroups.com, "dingo" <[EMAIL PROTECTED]> wrote: > > > > The

[amibroker] Re: getting a list of watchlists that my symbol belongs to

2008-06-19 Thread murthysuresh
--- In amibroker@yahoogroups.com, "dingo" <[EMAIL PROTECTED]> wrote: > > The only way I know is to read the ..Database\WatchLists\Index.txt file > using the fOpen/fGet.. functions. > > Then using a loop go down thru that list and check to see if any > Database\WatchLists\entry + .Tls exists Then