PureBytes Links
Trading Reference Links
|
Hello,
This can be achieved today using simple JScript script.
(Save it to external .js file and double click)
iWatchList = 1; /* you can define watch list number here */
AB = new ActiveXObject("Broker.Application");
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( 2000 ); // 2 seconds delay
Doc.Close();
}
}
else
{
if( Stk.WatchListBits2 & ( 1 << ( iWatchList - 32 )) )
{
Doc = AB.Documents.Open( Stk.Ticker );
WScript.Sleep( 2000 ); // 2 seconds delay
Doc.Close();
}
}
}
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "Rakesh Sahgal" <rakeshsahgal@xxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Monday, June 27, 2005 12:50 PM
Subject: RE: [amibroker] Feature Request_Market Geometry Tools
>
> Yes.Will be a very useful addition. Let us see if the
> non-system types get a hearing from the boss man. :-)
> .
>
> Regards
>
> R
> --- Dave <dbwalsh1@xxxxxxxxxxx> wrote:
>
>> It would also be nice to be able to Auto Play Charts
>> by sector/watchlist
>> etc using a custom time delay for your viewing.
>>
>> Rgds Dave
>>
>> -----Original Message-----
>> From: amibroker@xxxxxxxxxxxxxxx
>> [mailto:amibroker@xxxxxxxxxxxxxxx] On
>> Behalf Of Rakesh Sahgal
>> Sent: Monday, 27 June 2005 9:25 AM
>> To: amibroker@xxxxxxxxxxxxxxx
>> Subject: Re: [amibroker] Feature Request_Market
>> Geometry Tools
>>
>>
>> How about considering the following for non-system
>> discretionary
>> traders:
>>
>> 1. Enhancing Pitchforks with the ability to plot
>> warning lines at fib/gann levels which are user
>> defined?
>>
>> 2. Enabling Mirror Lines of Trend Lines - again at
>> user defined levels which maybe fib or gann based.
>>
>>
>> Regards
>>
>>
>> R S
>>
>> --- Bill Barnard <wbarnard@xxxxxxx> wrote:
>>
>> > Since we have been disscussing enhancements to AB,
>> > here is my wish: I
>> > would like to be able to reload a saved CSV file
>> > into the AA results
>> > table, saving the time of doing an exploration
>> > again.
>> >
>> > Also, as someone asked here some time ago, I would
>> > like to be able to
>> > select funds from the result table for charting
>> with
>> > a single click
>> > and with the arrow keys, as is possible from
>> > watchlists.
>> >
>> > Thanks, Tomasz, for a great tool.
>> >
>> > Bill
>> >
>> >
>> >
>>
>>
>> __________________________________________________
>> Do You Yahoo!?
>> Tired of spam? Yahoo! Mail has the best spam
>> protection around
>> http://mail.yahoo.com
>>
>>
>> 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 other support material please check also:
>> http://www.amibroker.com/support.html
>>
>>
>> Yahoo! Groups Links
>>
>>
>>
>>
>>
>>
>>
>>
>
>
> __________________________________________________
> Do You Yahoo!?
> Tired of spam? Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
>
>
> 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 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 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/
<*> 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/
|