That can be accomplished in a number of different ways:

1. Write AFL code to explicitly use different values for each symbol
e.g.

if (Name() == "IBM") {
  param1 = ...;
} else if (Name() == "ORCL") {
  param1 = ...;
}

2. Generalize the above by read values from a file on disk using fopen, fgets, 
etc.

3. Batch run for each symbol using different param setting

Mike

--- In [email protected], "cvanhaesendonck" <carl....@...> wrote:
>
> I am sure this can be done with Ami but failed to find how:
> 
> All I want to do is perform an exploration for my system, on a limited number 
> of selected symbols (say a watchlist of 30 symbols) but with DIFFERENT 
> paramaters for each symbol (in fact, the best paramaters after optimization 
> for each of the symbol).
> 
> Is there a way to do this with Amibroker??
> I used to use WealthLab in the past and I rememebr in this app you could 
> store the best parameters for each symbol, but what about here?
> 
> Thanks for any help.
> 
> Carl
>


Reply via email to