[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[amibroker] Re: Jscript question? How to save off multiple 15 minute charts?



PureBytes Links

Trading Reference Links

Ok this worked well!  I made several layout files and tested.  Just 
repeat the code and a layout file for each symbol.  You can use 
either png files or gif files here. 

Thanks to all...

RichardF.
-------------------------------------------------------

AB = new ActiveXObject("Broker.Application");
AB.LoadLayout("C:\\Program Files\\Amibroker\\Layouts\\az-20min.awl");
Win = AB.ActiveWindow;
Win.ExportImage( "6az7-globex-fut.gif", 1280,960);

WScript.Sleep( 4000 );



AB = new ActiveXObject("Broker.Application");
AB.LoadLayout("C:\\Program Files\\Amibroker\\Layouts\\bz-20min.awl");
Win = AB.ActiveWindow;
Win.ExportImage( "6bz7-globex-fut.gif", 1280,960);

WScript.Sleep( 4000 );



AB = new ActiveXObject("Broker.Application");
AB.LoadLayout("C:\\Program Files\\Amibroker\\Layouts\\cz-20min.awl");
Win = AB.ActiveWindow;
Win.ExportImage( "6cz7-globex-fut.gif", 1280,960);

WScript.Sleep( 4000 );



---------------------------------------------------------------




--- In amibroker@xxxxxxxxxxxxxxx, "murthysuresh" <money@xxx> wrote:
>
> here is the solution that i am planning to do.
> 1. use api to load the layout
> 
> 2. use external tool to load the symbol
> 
> ex with autoit is
> 
> autoit = WIN32OLE.new('AutoItX3.Control')
>             autoit.AutoItSetOption("WinTitleMatchMode", 1)  
>             a=autoit.WinActivate( "AmiBroker"  )
>             autoit.ControlSetText
> ("AmiBroker", "", "[CLASS:RichEdit20A;]", nameOfSymbol)
>             autoit.ControlFocus( "AmiBroker", 
> nameofsymbol,"[CLASS:RichEdit20A;]" )
>             autoit.Send("{ENTER}")
>     
> 
> 
> 
> 
> --- In amibroker@xxxxxxxxxxxxxxx, "Tomasz Janeczko" <groups@> 
> wrote:
> >
> > Hello,
> > 
> > 3rd line defines ticker symbol
> > First number in 5th line defines interval (in your example 12).
> > It is encoded as follows:
> > Monthly -2
> > Weekly -1
> > Daily 0
> > Day/Night 1
> > Hourly 2
> > 15 minute 3
> > 5 minute 4
> > 1 minute 5
> > 15 sec 6
> > 5 sec 7
> > 1 sec 8
> > Tick 9
> > 1. Time Custom 10
> > 2. Time Custom 11
> > 3. Time Custom 12
> > 4. Time Custom 13
> > 5. Time Custom 14
> > 1. Tick/Range/Vol Custom 15
> > 2. Tick/Range/Vol Custom 16
> > 3. Tick/Range/Vol Custom 17
> > 4. Tick/Range/Vol Custom 18
> > 5. Tick/Range/Vol Custom 19
> > 
> > Note that this is subject to change pretty soon (probably in next 
> version)
> > when intervals will be specified by string, not by number. 
> > 
> > Best regards,
> > Tomasz Janeczko
> > amibroker.com
> > ----- Original Message ----- 
> > From: "rlfoxworth2006" <rlfoxworth2006@>
> > To: <amibroker@xxxxxxxxxxxxxxx>
> > Sent: Saturday, November 03, 2007 5:18 PM
> > Subject: [amibroker] Re: Jscript question? How to save off 
multiple 
> 15 minute charts?
> > 
> > 
> > > So where or which line does the layout interval get saved?
> > > 
> > > 
> > > Some Text From Layout file:
> > > 
> > > 
> > > BROKWLT1
> > > 1     
> > > ym   dec 07-ecbot-fut
> > > 1
> > > 12 0 0 -1 -1
> > > -4 -30 123 34 1 0
> > > BROKLAY2
> > > 10
> > > Sheet1
> > > 5
> > > 2915 18
> > > 2916 18
> > > 2899 18
> > > 2894 18
> > > 2893 18
> > > 
> > > 
> > > 
> > > 
> > > --- In amibroker@xxxxxxxxxxxxxxx, "dingo" <dingo@> wrote:
> > >>
> > >> So if the modify the layout that will allow them to produce 
the 
> > > imgages that
> > >> they want?
> > >> 
> > >> d 
> > >> 
> > >> > -----Original Message-----
> > >> > From: amibroker@xxxxxxxxxxxxxxx 
> > >> > [mailto:amibroker@xxxxxxxxxxxxxxx] On Behalf Of Tomasz 
Janeczko
> > >> > Sent: Saturday, November 03, 2007 11:54 AM
> > >> > To: amibroker@xxxxxxxxxxxxxxx
> > >> > Subject: Re: [amibroker] Re: Jscript question? How to save 
> > >> > off multiple 15 minute charts?
> > >> > 
> > >> > Hello,
> > >> > 
> > >> > Right now it is somewhat tricky because the layout contains 
> > >> > both symbol and timeframe selected,
> > >> > so you would need to either create separate layouts or 
change 
> > >> > the ticker inside layout file prior to loading
> > >> > (it is plain text file, so can be easily modified 
> > > programmatically). 
> > >> > 
> > >> > In the future there will be more straightforward ways to 
> > >> > change display interval programmatically from OLE directly,
> > >> > without need to use layouts.
> > >> > 
> > >> > Best regards,
> > >> > Tomasz Janeczko
> > >> > amibroker.com
> > >> > ----- Original Message ----- 
> > >> > From: "murthysuresh" <money@>
> > >> > To: <amibroker@xxxxxxxxxxxxxxx>
> > >> > Sent: Saturday, November 03, 2007 2:14 PM
> > >> > Subject: [amibroker] Re: Jscript question? How to save off 
> > >> > multiple 15 minute charts?
> > >> > 
> > >> > 
> > >> > > yes. murthysuresh is different from rlfoxworth2006 and 
> > > aparrently i 
> > >> > > guess we are going against the similar objectives 
> > >> > > what i want to achieve is to take a list of symbols and 
> > >> > take snapshot 
> > >> > > of it under different timeframes
> > >> > > 1. weekly
> > >> > > 2. daily
> > >> > > 3. hourly
> > >> > > 
> > >> > > I have done a application.open to open the tickers. 
however 
> > >> > i cannot 
> > >> > > change the timeframe for these tickers because if i use a 
> > >> > .openlayout 
> > >> > > it changes the symbols to whatever the default layout 
symbol 
> > > was.
> > >> > > if i use a window.loadTemplate, it cannot change the 
> timeframes.
> > >> > > 
> > >> > > dunno what to do.
> > >> > > 
> > >> > > 
> > >> > > 
> > >> > > --- In amibroker@xxxxxxxxxxxxxxx, "dingo" <dingo@> wrote:
> > >> > >>
> > >> > >> I saw that but we've had others with diffent email 
> addresses 
> > > post 
> > >> > > with
> > >> > >> varying id's.
> > >> > >> 
> > >> > >> My bad.  So are you he working on the same project?
> > >> > >> 
> > >> > >> d 
> > >> > >> 
> > >> > >> > -----Original Message-----
> > >> > >> > From: amibroker@xxxxxxxxxxxxxxx 
> > >> > >> > [mailto:amibroker@xxxxxxxxxxxxxxx] On Behalf Of 
> > > rlfoxworth2006
> > >> > >> > Sent: Friday, November 02, 2007 11:37 PM
> > >> > >> > To: amibroker@xxxxxxxxxxxxxxx
> > >> > >> > Subject: [amibroker] Re: Jscript question? How to save 
> off 
> > >> > >> > multiple 15 minute charts?
> > >> > >> > 
> > >> > >> > No, as you can see my name is RichardF.  Richard 
Foxworth 
> > >> > >> > rlfoxworth2006 in the email address is the clue....
> > >> > >> > 
> > >> > >> > RichardF.
> > >> > >> > 
> > >> > >> > 
> > >> > >> > --- In amibroker@xxxxxxxxxxxxxxx, "dingo" <dingo@> 
wrote:
> > >> > >> > >
> > >> > >> > > Are you the same person as "murthysuresh"?
> > >> > >> > > 
> > >> > >> > > If so please don't post under both id's - use just 
one -
>  
> > > its 
> > >> > > very
> > >> > >> > > confusing..
> > >> > >> > > 
> > >> > >> > > If not - nevermind.
> > >> > >> > > 
> > >> > >> > > d 
> > >> > >> > > 
> > >> > >> > > > -----Original Message-----
> > >> > >> > > > From: amibroker@xxxxxxxxxxxxxxx 
> > >> > >> > > > [mailto:amibroker@xxxxxxxxxxxxxxx] On Behalf Of 
> > >> > rlfoxworth2006
> > >> > >> > > > Sent: Friday, November 02, 2007 11:23 PM
> > >> > >> > > > To: amibroker@xxxxxxxxxxxxxxx
> > >> > >> > > > Subject: [amibroker] Re: Jscript question? How to 
> save 
> > > off 
> > >> > >> > > > multiple 15 minute charts?
> > >> > >> > > > 
> > >> > >> > > > I've spent a week of hours on this and finally gave 
> up 
> > > and 
> > >> > >> > emailed 
> > >> > >> > > > earlier to see if I could get a version of software 
> with 
> > > 20 
> > >> > > and 
> > >> > >> > 30 
> > >> > >> > > > minute built-in interval for the Database 
Settings.  
> > >> > >> > > > 
> > >> > >> > > > Richard
> > >> > >> > > > 
> > >> > >> > > > --- In amibroker@xxxxxxxxxxxxxxx, Graham 
> <kavemanperth@> 
> > >> > > wrote:
> > >> > >> > > > >
> > >> > >> > > > > Have you tired template instead of layout?
> > >> > >> > > > > 
> > >> > >> > > > > -- 
> > >> > >> > > > > Cheers
> > >> > >> > > > > Graham Kav
> > >> > >> > > > > AFL Writing Service
> > >> > >> > > > > http://www.aflwriting.com
> > >> > >> > > > > 
> > >> > >> > > > > 
> > >> > >> > > > > On 03/11/2007, dingo <dingo@> wrote:
> > >> > >> > > > > > try loading the layout and then the symbol.
> > >> > >> > > > > >
> > >> > >> > > > > > d
> > >> > >> > > > > >
> > >> > >> > > > > > > -----Original Message-----
> > >> > >> > > > > > > From: amibroker@xxxxxxxxxxxxxxx
> > >> > >> > > > > > > [mailto:amibroker@xxxxxxxxxxxxxxx] On Behalf 
Of 
> > >> > > murthysuresh
> > >> > >> > > > > > > Sent: Friday, November 02, 2007 10:57 PM
> > >> > >> > > > > > > To: amibroker@xxxxxxxxxxxxxxx
> > >> > >> > > > > > > Subject: [amibroker] Re: Jscript question? 
How 
> to 
> > > save 
> > >> > > off
> > >> > >> > > > > > > multiple 15 minute charts?
> > >> > >> > > > > > >
> > >> > >> > > > > > > TJ: I thought it was working properly. but 
> > > aparrently 
> > >> > > not.
> > >> > >> > > > > > > here is the problem
> > >> > >> > > > > > >
> > >> > >> > > > > > > oADoc=application.Documents.open( 
> tradeObj.Symbol) 
> > >> > > opens my 
> > >> > >> > > > symbol
> > >> > >> > > > > > > application.LoadLayout("C:\\Program
> > >> > >> > > > > > > Files\\AmiBroker\\Layouts\\DailyLayout.awl")- 
> > > loads my 
> > >> > >> > layout.  
> > >> > >> > > > this
> > >> > >> > > > > > > replaces the symbol with the symbol that was 
in 
> > > the 
> > >> > > saved 
> > >> > >> > > > layotu.
> > >> > >> > > > > > >
> > >> > >> > > > > > > now how do i open a specific symbol with a 
> > > particular 
> > >> > >> > layout.
> > >> > >> > > > > > >
> > >> > >> > > > > > > seede
> > >> > >> > > > > > >
> > >> > >> > > > > > >
> > >> > >> > > > > > >
> > >> > >> > > > > > > --- In amibroker@xxxxxxxxxxxxxxx, "Tomasz 
> > > Janeczko" 
> > >> > >> > <groups@>
> > >> > >> > > > > > > wrote:
> > >> > >> > > > > > > >
> > >> > >> > > > > > > > Hello,
> > >> > >> > > > > > > >
> > >> > >> > > > > > > > You can do this by using LoadLayout() 
> function 
> > > (from 
> > >> > >> > > > Application
> > >> > >> > > > > > > object).
> > >> > >> > > > > > > >
> > >> > >> > > > > > > > 1. Define separate layout for each interval 
> you 
> > > want 
> > >> > > to 
> > >> > >> > use
> > >> > >> > > > > > > > 2. Call LoadLayout() to display given 
> interval.
> > >> > >> > > > > > > >
> > >> > >> > > > > > > > Best regards,
> > >> > >> > > > > > > > Tomasz Janeczko
> > >> > >> > > > > > > > amibroker.com
> > >> > >> > > > > > > > ----- Original Message -----
> > >> > >> > > > > > > > From: "murthysuresh" <money@>
> > >> > >> > > > > > > > To: <amibroker@xxxxxxxxxxxxxxx>
> > >> > >> > > > > > > > Sent: Saturday, October 27, 2007 3:54 AM
> > >> > >> > > > > > > > Subject: [amibroker] Re: Jscript question? 
> How 
> > > to 
> > >> > > save 
> > >> > >> > off 
> > >> > >> > > > multiple
> > >> > >> > > > > > > 15 minute charts?
> > >> > >> > > > > > > >
> > >> > >> > > > > > > >
> > >> > >> > > > > > > > > TJ
> > >> > >> > > > > > > > > How do you then programatically open 
chart 
> > >> > in other 
> > >> > >> > > > timeframes
> > >> > >> > > > > > > other
> > >> > >> > > > > > > > > than base interval. Is there any specific 
> > >> > function. 
> > >> > > If 
> > >> > >> > you 
> > >> > >> > > > do
> > >> > >> > > > > > > > > AB.Documents.Open(ticker), it will always 
> open 
> > > the 
> > >> > >> > chart in 
> > >> > >> > > > base
> > >> > >> > > > > > > > > interval.
> > >> > >> > > > > > > > >
> > >> > >> > > > > > > > > If --- In 
> amibroker@xxxxxxxxxxxxxxx, "Tomasz 
> > >> > > Janeczko" 
> > >> > >> > > > <groups@>
> > >> > >> > > > > > > > > wrote:
> > >> > >> > > > > > > > >>
> > >> > >> > > > > > > > >> Hello,
> > >> > >> > > > > > > > >>
> > >> > >> > > > > > > > >> Base time interval is something that you 
> > > should 
> > >> > > set at 
> > >> > >> > > > database
> > >> > >> > > > > > > > > creation time and
> > >> > >> > > > > > > > >> leave untouched. It is a "base" of all 
> other 
> > >> > >> > timeframes 
> > >> > >> > > > you may
> > >> > >> > > > > > > need
> > >> > >> > > > > > > > >> to use, therefore we strongly recommend 
to 
> > > use 
> > >> > > base 
> > >> > >> > time
> > >> > >> > > > > > > interval
> > >> > >> > > > > > > > > of 1-minute
> > >> > >> > > > > > > > >> as it allows then to view/analyse ANY X-
> > > minute 
> > >> > >> > interval or 
> > >> > >> > > > X-
> > >> > >> > > > > > > hour
> > >> > >> > > > > > > > > interval
> > >> > >> > > > > > > > >> (where X is user definable).
> > >> > >> > > > > > > > >>
> > >> > >> > > > > > > > >> Best regards,
> > >> > >> > > > > > > > >> Tomasz Janeczko
> > >> > >> > > > > > > > >> amibroker.com
> > >> > >> > > > > > > > >> ----- Original Message -----
> > >> > >> > > > > > > > >> From: "murthysuresh" <money@>
> > >> > >> > > > > > > > >> To: <amibroker@xxxxxxxxxxxxxxx>
> > >> > >> > > > > > > > >> Sent: Saturday, October 27, 2007 12:40 AM
> > >> > >> > > > > > > > >> Subject: [amibroker] Re: Jscript 
question? 
> > > How to 
> > >> > > save 
> > >> > >> > off
> > >> > >> > > > > > > multiple
> > >> > >> > > > > > > > > 15 minute charts?
> > >> > >> > > > > > > > >>
> > >> > >> > > > > > > > >>
> > >> > >> > > > > > > > >> > you cannot do it. however you can 
> manuplate 
> > > the 
> > >> > >> > intraday
> > >> > >> > > > > > > interval
> > >> > >> > > > > > > > >> > using preferences/ intraday /custom 
time 
> > >> > > intervals 
> > >> > >> > to 
> > >> > >> > > > whatever
> > >> > >> > > > > > > > >> > settings u want.
> > >> > >> > > > > > > > >> >
> > >> > >> > > > > > > > >> > --- In 
> > >> > > amibroker@xxxxxxxxxxxxxxx, "rlfoxworth2006"
> > >> > >> > > > > > > > >> > <rlfoxworth2006@> wrote:
> > >> > >> > > > > > > > >> >>
> > >> > >> > > > > > > > >> >> BTW that worked great! Now, how do I 
> > >> > change the 
> > >> > >> > Base 
> > >> > >> > > > Interval
> > >> > >> > > > > > > > > say
> > >> > >> > > > > > > > >> > to
> > >> > >> > > > > > > > >> >> 20 minutes?  The Base Time Interval 
> > >> > only has 1, 
> > >> > > 5, 
> > >> > >> > 15 
> > >> > >> > > > minute
> > >> > >> > > > > > > > > listed.
> > >> > >> > > > > > > > >> >>
> > >> > >> > > > > > > > >> >>
> > >> > >> > > > > > > > >> >> Thanks,
> > >> > >> > > > > > > > >> >>
> > >> > >> > > > > > > > >> >> RichardF.
> > >> > >> > > > > > > > >> >>
> > >> > >> > > > > > > > >> >>
> > >> > >> > > > > > > > >> >>
> > >> > >> > > > > > > > >> >> --- In 
> > >> > > amibroker@xxxxxxxxxxxxxxx, "murthysuresh" 
> > >> > >> > > > <money@>
> > >> > >> > > > > > > wrote:
> > >> > >> > > > > > > > >> >> >
> > >> > >> > > > > > > > >> >> > NO. it only means that there is a 
bar 
> > > for 
> > >> > > every 
> > >> > >> > 15 
> > >> > >> > > > minutes.
> > >> > >> > > > > > > > > the
> > >> > >> > > > > > > > >> >> data
> > >> > >> > > > > > > > >> >> > in the bar would be refreshed based 
> on 
> > > the 
> > >> > >> > properties 
> > >> > >> > > > u
> > >> > >> > > > > > > ahve
> > >> > >> > > > > > > > >> > setup
> > >> > >> > > > > > > > >> >> in
> > >> > >> > > > > > > > >> >> > the refresh times in preferences.
> > >> > >> > > > > > > > >> >> > the 1 minute indicates the lowest 
> > > resolution 
> > >> > > of 
> > >> > >> > the 
> > >> > >> > > > data
> > >> > >> > > > > > > > > stored
> > >> > >> > > > > > > > >> > in
> > >> > >> > > > > > > > >> >> > ab. so if you goto quote editor, it 
> > >> > will show 
> > >> > > the 
> > >> > >> > > > data in 1
> > >> > >> > > > > > > > >> > minute
> > >> > >> > > > > > > > >> >> > frequency.
> > >> > >> > > > > > > > >> >> >
> > >> > >> > > > > > > > >> >> >
> > >> > >> > > > > > > > >> >> > --- In 
> > >> > > amibroker@xxxxxxxxxxxxxxx, "rlfoxworth2006"
> > >> > >> > > > > > > > >> >> > <rlfoxworth2006@> wrote:
> > >> > >> > > > > > > > >> >> > >
> > >> > >> > > > > > > > >> >> > > If the Base Time Interval is 1 
> Minute 
> > > and 
> > >> > > you 
> > >> > >> > > > change it
> > >> > >> > > > > > > to
> > >> > >> > > > > > > > > 15
> > >> > >> > > > > > > > >> >> > minutes
> > >> > >> > > > > > > > >> >> > > does that mean the data coming in 
> > > updates 
> > >> > > every 
> > >> > >> > 15
> > >> > >> > > > > > > minutes
> > >> > >> > > > > > > > > and
> > >> > >> > > > > > > > >> >> > there
> > >> > >> > > > > > > > >> >> > > is no pulling charts less than 15 
> > > minute 
> > >> > >> > intervals?
> > >> > >> > > > > > > Example
> > >> > >> > > > > > > > > of
> > >> > >> > > > > > > > >> >> > > looking at charts say 3 min , 5 
> min, 
> > > 10 
> > >> > > min...?
> > >> > >> > > > > > > > >> >> > >
> > >> > >> > > > > > > > >> >> > > Is there some way to tell the 
> program 
> > > to 
> > >> > > use 15 
> > >> > >> > > > minutes
> > >> > >> > > > > > > > > instead
> > >> > >> > > > > > > > >> >> of
> > >> > >> > > > > > > > >> >> > > default?
> > >> > >> > > > > > > > >> >> > >
> > >> > >> > > > > > > > >> >> > > Thanks....
> > >> > >> > > > > > > > >> >> > >
> > >> > >> > > > > > > > >> >> > > RichardF.
> > >> > >> > > > > > > > >> >> > >
> > >> > >> > > > > > > > >> >> > >
> > >> > >> > > > > > > > >> >> > > --- In 
> > >> > >> > amibroker@xxxxxxxxxxxxxxx, "murthysuresh" 
> > >> > >> > > > <money@>
> > >> > >> > > > > > > > > wrote:
> > >> > >> > > > > > > > >> >> > > >
> > >> > >> > > > > > > > >> >> > > > AB.Documents.Open opens the 
chart 
> in 
> > > the 
> > >> > > base 
> > >> > >> > time
> > >> > >> > > > > > > frame.
> > >> > >> > > > > > > > >> >> > > >
> > >> > >> > > > > > > > >> >> > > > -- In 
> > >> > >> > amibroker@xxxxxxxxxxxxxxx, "rlfoxworth2006"
> > >> > >> > > > > > > > >> >> > > > <rlfoxworth2006@> wrote:
> > >> > >> > > > > > > > >> >> > > > >
> > >> > >> > > > > > > > >> >> > > > > Hi,
> > >> > >> > > > > > > > >> >> > > > >
> > >> > >> > > > > > > > >> >> > > > > Jscript question? How to save 
> off 
> > >> > > multiple 
> > >> > >> > 15 
> > >> > >> > > > minute
> > >> > >> > > > > > > > > charts?
> > >> > >> > > > > > > > >> >> > > > >
> > >> > >> > > > > > > > >> >> > > > > I've tried this code that was 
> > >> > posted on 
> > >> > > the 
> > >> > >> > > > board and
> > >> > >> > > > > > > it
> > >> > >> > > > > > > > >> >> seems
> > >> > >> > > > > > > > >> >> > to
> > >> > >> > > > > > > > >> >> > > > > work and save the files just 
> > >> > fine.  But 
> > >> > >> > having 
> > >> > >> > > > an
> > >> > >> > > > > > > active
> > >> > >> > > > > > > > >> >> window
> > >> > >> > > > > > > > >> >> > > > > selected and with a 15 minute 
> > > interval 
> > >> > >> > > > selected, the
> > >> > >> > > > > > > > >> > program
> > >> > >> > > > > > > > >> >> > > loads
> > >> > >> > > > > > > > >> >> > > > up
> > >> > >> > > > > > > > >> >> > > > > and saves off only one minute 
> > > charts 
> > >> > >> > instead of 
> > >> > >> > > > the
> > >> > >> > > > > > > 15
> > >> > >> > > > > > > > >> >> minutes
> > >> > >> > > > > > > > >> >> > > > charts.
> > >> > >> > > > > > > > >> >> > > > >
> > >> > >> > > > > > > > >> >> > > > > Help please and thanks... 
Been 
> > >> > > searching 
> > >> > >> > all 
> > >> > >> > > > evening
> > >> > >> > > > > > > for
> > >> > >> > > > > > > > >> >> answer
> > >> > >> > > > > > > > >> >> > > > > before asking....
> > >> > >> > > > > > > > >> >> > > > >
> > >> > >> > > > > > > > >> >> > > > > RichardF.
> > >> > >> > > > > > > > >> >> > > > >
> > >> > >> > > > > > > > >> >> > > > > -------------------------
> > >> > >> > > > > > > > >> >> > > > >
> > >> > >> > > > > > > > >> >> > > > > Save file as jscript file and 
> run 
> > > and 
> > >> > > place 
> > >> > >> > > > tickers
> > >> > >> > > > > > > in
> > >> > >> > > > > > > > >> >> > Watchlist
> > >> > >> > > > > > > > >> >> > > 0.
> > >> > >> > > > > > > > >> >> > > > > ------------------
> > >> > >> > > > > > > > >> >> > > > >
> > >> > >> > > > > > > > >> >> > > > > iWatchList = 0; /* you can 
> > >> > define watch 
> > >> > >> > list num
> > >> > >> > > > > > > > >> > operations.
> > >> > >> > > > > > > > >> >> > ber
> > >> > >> > > > > > > > >> >> > > > here
> > >> > >> > > > > > > > >> >> > > > > */
> > >> > >> > > > > > > > >> >> > > > >
> > >> > >> > > > > > > > >> >> > > > > AB = new ActiveXObject
> > >> > >> > ("Broker.Application");
> > >> > >> > > > > > > > >> >> > > > > AW = AB.ActiveWindow;
> > >> > >> > > > > > > > >> >> > > > >
> > >> > >> > > > > > > > >> >> > > > > Qty = AB.Stocks.Count;
> > >> > >> > > > > > > > >> >> > > > >
> > >> > >> > > > > > > > >> >> > > > > for( i = 0; i < Qty; i++ )
> > >> > >> > > > > > > > >> >> > > > > {
> > >> > >> > > > > > > > >> >> > > > > Stk = AB.Stocks( i );
> > >> > >> > > > > > > > >> >> > > > > if( iWatchList < 32 )
> > >> > >> > > > > > > > >> >> > > > > {
> > >> > >> > > > > > > > >> >> > > > >   if( Stk.WatchListBits & ( 1 
> << 
> > >> > >> > iWatchList ) )
> > >> > >> > > > > > > > >> >> > > > >   {
> > >> > >> > > > > > > > >> >> > > > >    Doc = AB.Documents.Open( 
> > >> > > Stk.Ticker );
> > >> > >> > > > > > > > >> >> > > > >    WScript.Sleep( 4000 ); // 
4 
> > > seconds 
> > >> > > delay
> > >> > >> > > > > > > > >> >> > > > >     
AB.ActiveWindow.ExportImage
> > >> > > (Stk.Ticker 
> > >> > >> > > > + ".png")
> > >> > >> > > > > > > > >> >> > > > >    Doc.Close();
> > >> > >> > > > > > > > >> >> > > > >   }
> > >> > >> > > > > > > > >> >> > > > > }
> > >> > >> > > > > > > > >> >> > > > > else
> > >> > >> > > > > > > > >> >> > > > > {
> > >> > >> > > > > > > > >> >> > > > >   if( Stk.WatchListBits2 & ( 
1 
> << 
> > > ( 
> > >> > >> > iWatchList -
> > >> > >> > > > > > > 32 )) )
> > >> > >> > > > > > > > >> >> > > > >   {
> > >> > >> > > > > > > > >> >> > > > >    Doc = AB.Documents.Open( 
> > >> > > Stk.Ticker );
> > >> > >> > > > > > > > >> >> > > > >    AB.ActiveWindow.ExportImage
> > >> > > (Stk.Ticker 
> > >> > >> > > > + ".png")
> > >> > >> > > > > > > > >> >> > > > >    WScript.Sleep( 4000 ); // 
4 
> > > seconds 
> > >> > > delay
> > >> > >> > > > > > > > >> >> > > > >    Doc.Close();
> > >> > >> > > > > > > > >> >> > > > >   }
> > >> > >> > > > > > > > >> >> > > > > }
> > >> > >> > > > > > > > >> >> > > > >
> > >> > >> > > > > > > > >> >> > > > > }
> > >> > >> > > > > > > > >> >> > > > >
> > >> > >> > > > > > > > >> >> > > >
> > >> > >> > > > > > > > >> >> > >
> > >> > >> > > > > > > > >> >> >
> > >> > >> > > > > > > > >> >>
> > >> > >> > > > > > > > >> >
> > >> > >> > > > > > > > >> >
> > >> > >> > > > > > > > >> >
> > >> > >> > > > > > > > >> >
> > >> > >> > > > > > > > >> > Please note that this group is for 
> > > discussion 
> > >> > >> > between 
> > >> > >> > > > users
> > >> > >> > > > > > > only.
> > >> > >> > > > > > > > >> >
> > >> > >> > > > > > > > >> > To get support from AmiBroker please 
> send 
> > > an e-
> > >> > > mail 
> > >> > >> > > > directly
> > >> > >> > > > > > > to
> > >> > >> > > > > > > > >> > SUPPORT {at} amibroker.com
> > >> > >> > > > > > > > >> >
> > >> > >> > > > > > > > >> > For NEW RELEASE ANNOUNCEMENTS and 
other 
> > > news 
> > >> > > always 
> > >> > >> > check
> > >> > >> > > > > > > DEVLOG:
> > >> > >> > > > > > > > >> > http://www.amibroker.com/devlog/
> > >> > >> > > > > > > > >> >
> > >> > >> > > > > > > > >> > For other support material please 
check 
> > > also:
> > >> > >> > > > > > > > >> > http://www.amibroker.com/support.html
> > >> > >> > > > > > > > >> >
> > >> > >> > > > > > > > >> > Yahoo! Groups Links
> > >> > >> > > > > > > > >> >
> > >> > >> > > > > > > > >> >
> > >> > >> > > > > > > > >> >
> > >> > >> > > > > > > > >> >
> > >> > >> > > > > > > > >> >
> > >> > >> > > > > > > > >>
> > >> > >> > > > > > > > >
> > >> > >> > > > > > > > >
> > >> > >> > > > > > > > >
> > >> > >> > > > > > > > >
> > >> > >> > > > > > > > > Please note that this group is for 
> discussion 
> > >> > > between 
> > >> > >> > users 
> > >> > >> > > > only.
> > >> > >> > > > > > > > >
> > >> > >> > > > > > > > > To get support from AmiBroker please send 
> > >> > an e-mail 
> > >> > >> > > > directly to
> > >> > >> > > > > > > > > SUPPORT {at} amibroker.com
> > >> > >> > > > > > > > >
> > >> > >> > > > > > > > > For NEW RELEASE ANNOUNCEMENTS and other 
> > >> > news always 
> > >> > >> > check 
> > >> > >> > > > DEVLOG:
> > >> > >> > > > > > > > > http://www.amibroker.com/devlog/
> > >> > >> > > > > > > > >
> > >> > >> > > > > > > > > For other support material please check 
> also:
> > >> > >> > > > > > > > > http://www.amibroker.com/support.html
> > >> > >> > > > > > > > >
> > >> > >> > > > > > > > > Yahoo! Groups Links
> > >> > >> > > > > > > > >
> > >> > >> > > > > > > > >
> > >> > >> > > > > > > > >
> > >> > >> > > > > > > > >
> > >> > >> > > > > > > > >
> > >> > >> > > > > > > >
> > >> > >> > > > > > >
> > >> > >> > > > > > >
> > >> > >> > > > > > >
> > >> > >> > > > > > >
> > >> > >> > > > > > > Please note that this group is for discussion 
> > > between 
> > >> > > users 
> > >> > >> > > > only.
> > >> > >> > > > > > >
> > >> > >> > > > > > > To get support from AmiBroker please send an 
e-
> > > mail 
> > >> > >> > directly to
> > >> > >> > > > > > > SUPPORT {at} amibroker.com
> > >> > >> > > > > > >
> > >> > >> > > > > > > For NEW RELEASE ANNOUNCEMENTS and other news 
> > > always 
> > >> > > check 
> > >> > >> > > > DEVLOG:
> > >> > >> > > > > > > http://www.amibroker.com/devlog/
> > >> > >> > > > > > >
> > >> > >> > > > > > > For other support material please check also:
> > >> > >> > > > > > > http://www.amibroker.com/support.html
> > >> > >> > > > > > >
> > >> > >> > > > > > > Yahoo! Groups Links
> > >> > >> > > > > > >
> > >> > >> > > > > > >
> > >> > >> > > > > > >
> > >> > >> > > > > >
> > >> > >> > > > > >
> > >> > >> > > > > >
> > >> > >> > > > > > Please note that this group is for discussion 
> > > between 
> > >> > > users 
> > >> > >> > only.
> > >> > >> > > > > >
> > >> > >> > > > > > To get support from AmiBroker please send an e-
> mail 
> > >> > > directly 
> > >> > >> > to
> > >> > >> > > > > > SUPPORT {at} amibroker.com
> > >> > >> > > > > >
> > >> > >> > > > > > For NEW RELEASE ANNOUNCEMENTS and other news 
> > >> > always check 
> > >> > >> > DEVLOG:
> > >> > >> > > > > > http://www.amibroker.com/devlog/
> > >> > >> > > > > >
> > >> > >> > > > > > For other support material please check also:
> > >> > >> > > > > > http://www.amibroker.com/support.html
> > >> > >> > > > > >
> > >> > >> > > > > > Yahoo! Groups Links
> > >> > >> > > > > >
> > >> > >> > > > > >
> > >> > >> > > > > >
> > >> > >> > > > > >
> > >> > >> > > > >
> > >> > >> > > > 
> > >> > >> > > > 
> > >> > >> > > > 
> > >> > >> > > > 
> > >> > >> > > > Please note that this group is for discussion 
between 
> > > users 
> > >> > > only.
> > >> > >> > > > 
> > >> > >> > > > To get support from AmiBroker please send an e-mail 
> > > directly 
> > >> > > to 
> > >> > >> > > > SUPPORT {at} amibroker.com
> > >> > >> > > > 
> > >> > >> > > > For NEW RELEASE ANNOUNCEMENTS and other news always 
> > > check 
> > >> > > DEVLOG:
> > >> > >> > > > http://www.amibroker.com/devlog/
> > >> > >> > > > 
> > >> > >> > > > For other support material please check also:
> > >> > >> > > > http://www.amibroker.com/support.html
> > >> > >> > > >  
> > >> > >> > > > Yahoo! Groups Links
> > >> > >> > > > 
> > >> > >> > > > 
> > >> > >> > > >
> > >> > >> > >
> > >> > >> > 
> > >> > >> > 
> > >> > >> > 
> > >> > >> > 
> > >> > >> > Please note that this group is for discussion between 
> users 
> > > only.
> > >> > >> > 
> > >> > >> > To get support from AmiBroker please send an e-mail 
> directly 
> > > to 
> > >> > >> > SUPPORT {at} amibroker.com
> > >> > >> > 
> > >> > >> > For NEW RELEASE ANNOUNCEMENTS and other news always 
check 
> > > DEVLOG:
> > >> > >> > http://www.amibroker.com/devlog/
> > >> > >> > 
> > >> > >> > For other support material please check also:
> > >> > >> > http://www.amibroker.com/support.html
> > >> > >> >  
> > >> > >> > Yahoo! Groups Links
> > >> > >> > 
> > >> > >> > 
> > >> > >> >
> > >> > >>
> > >> > > 
> > >> > > 
> > >> > > 
> > >> > > 
> > >> > > Please note that this group is for discussion between 
users 
> > > only.
> > >> > > 
> > >> > > To get support from AmiBroker please send an e-mail 
directly 
> to 
> > >> > > SUPPORT {at} amibroker.com
> > >> > > 
> > >> > > For NEW RELEASE ANNOUNCEMENTS and other news always check 
> > > DEVLOG:
> > >> > > http://www.amibroker.com/devlog/
> > >> > > 
> > >> > > For other support material please check also:
> > >> > > http://www.amibroker.com/support.html
> > >> > > 
> > >> > > Yahoo! Groups Links
> > >> > > 
> > >> > > 
> > >> > > 
> > >> > > 
> > >> > >
> > >> > 
> > >> > 
> > >> > Please note that this group is for discussion between users 
> only.
> > >> > 
> > >> > To get support from AmiBroker please send an e-mail directly 
> to 
> > >> > SUPPORT {at} amibroker.com
> > >> > 
> > >> > For NEW RELEASE ANNOUNCEMENTS and other news always check 
> DEVLOG:
> > >> > http://www.amibroker.com/devlog/
> > >> > 
> > >> > For other support material please check also:
> > >> > http://www.amibroker.com/support.html
> > >> >  
> > >> > Yahoo! Groups Links
> > >> > 
> > >> > 
> > >> > 
> > >> >
> > >>
> > > 
> > > 
> > > 
> > > 
> > > Please note that this group is for discussion between users 
only.
> > > 
> > > To get support from AmiBroker please send an e-mail directly to 
> > > SUPPORT {at} amibroker.com
> > > 
> > > For NEW RELEASE ANNOUNCEMENTS and other news always check 
DEVLOG:
> > > http://www.amibroker.com/devlog/
> > > 
> > > For other support material please check also:
> > > http://www.amibroker.com/support.html
> > > 
> > > Yahoo! Groups Links
> > > 
> > > 
> > > 
> > > 
> > >
> >
>




Please note that this group is for discussion between users only.

To get support from AmiBroker please send an e-mail directly to 
SUPPORT {at} amibroker.com

For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/

For other support material please check also:
http://www.amibroker.com/support.html
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/amibroker/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/amibroker/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:amibroker-digest@xxxxxxxxxxxxxxx 
    mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx

<*> 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/