----- Original Message -----
Sent: Thursday, May 18, 2006 5:53
PM
Subject: Re: [amibroker] RT trading
system with multiple securities
Hi BG
Use Filter, select the watchlist.
Peace and Justice --- Patrick
----- Original Message -----
Sent: Thursday, May 18, 2006 7:06
AM
Subject: [amibroker] RT trading system
with multiple securities
Hello,
Is it possible to apply a RT trading system to,
say, a watchlist ?
I have tried :
i = 0 ;
StockName =
StrExtract(List, i) ;
while (StockName != "")
{
SetForeign(StockName, False, True)
;
(Here : process for each
security)
RestorePriceArrays()
;
i = i + 1
;
StockName = StrExtract(List, i)
;
}
Not appreciated by AB...
Thanks,