Re: [amibroker] Displaying charts in matrix layout

 

Hello Herman,
The following script will open a chart window for each symbol in watchlist 0 , but will not tile them automatically .
You would have to use Windows > Tile Vertically/Horizontally.

var AB = new ActiveXObject("Broker.Application");
var Docs = AB.Documents();
Docs.Close(); // close existing documents

watchlist = 0;
var Stocks = AB.Stocks;
var qty = Stocks.Count;

for ( i = 0 ; i < qty ; i ++ )
{
    Stock = Stocks.Item (i);
   
    if ( Stock.WatchListBits &1 << watchlist )
    Docs.Open ( Stock.Ticker)
}

WScript.Echo ( "Done" );



On 1/3/2016 6:15 PM, psytek@bell.net [amibroker] wrote:
 

Before reinventing the wheel I thought I'd check if anybody already knows of a solution to my requirement.

I may get 15 or more portfolio candidates to trade the next day. I like to visually inspect the chart/indicators for each ticker before making a commitment. Seeing them all at the same time would facilitate comparison.

Has anybody written software that will automatically tile small charts from a ticker-list into a m-by-n tiled layout?

I know there is an Auto-Tile for horizontal and vertical layouts, but not for matrix layouts afaik. Also, I would like it automated.

Can this be done? Any ideas anyone?

Herman




__._,_.___

Posted by: Aron Pipa <aron@myafl.com>
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (6)
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.

TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com

TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)

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


.

__,_._,___


EmoticonEmoticon