PureBytes Links
Trading Reference Links
|
AB.Documents.Open opens the chart in the base time frame.
-- In amibroker@xxxxxxxxxxxxxxx, "rlfoxworth2006"
<rlfoxworth2006@xxx> 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
<*> 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/
|