PureBytes Links
Trading Reference Links
|
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 amibroker@xxxxxxxxxxxxxxx, "cvanhaesendonck" <carl.van@xxx> 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
>
------------------------------------
**** 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/
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
amibroker-digest@xxxxxxxxxxxxxxx
amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|