... есть скрипт, там можно текущий тикер выгрузить, но его и с финама можно получить, а вот чтобы целиком?
доработал стандартный скрипт, если кому пригодится, получите, распишитесь

выгружает котировки по всем тикерам из текущей базы в текстовый файл:
/*
** AmiBroker/Win32 scripting Example
**
** File: Export.js
** Created: Tomasz Janeczko, December 12th, 1999
** Adjusted: ASFedor, March 4th, 2011
** Purpose: Exports quotations of all tickers in current database to txt file
** Language: JScript (Windows Scripting Host)
*/
function FormatFloat( number )
{
number = 0.001 * Math.round( number * 1000 );
str = number.toString();
return str.substring( 0, str.indexOf(".") + 4 );
}
var oAB = WScript.CreateObject("Broker.Application");
var fso = new ActiveXObject("Scripting.FileSystemObject");
var oStocks = oAB.Stocks;
WScript.Echo("Export start" );
f = fso.CreateTextFile("c:\\testfile.txt", true );
f.WriteLine("Ticker,Date_DMY,Open,High,Low,Close,Volume");
var myQty = oStocks.Count;
for( s = 0; s < myQty; s++ )
{
oStock = oStocks.item(s);
var Qty = oStock.Quotations.Count;
for( i = 0; i < Qty; i++ )
{
oQuote = oStock.Quotations( i );
var oDate = new Date( oQuote.Date );
f.WriteLine( oStock.Ticker + "," +
oDate.getDate() + "." + (oDate.getMonth()+1) + "." + oDate.getFullYear() + "," +
FormatFloat( oQuote.Open ) + "," +
FormatFloat( oQuote.High ) + "," +
FormatFloat( oQuote.Low ) + "," +
FormatFloat( oQuote.Close ) + "," +
Math.round( oQuote.Volume ) );
}
}
f.Close();
WScript.Echo("Export finished" );