PureBytes Links
Trading Reference Links
|
Do you mean that you want different code to run, depending on the
value of a variable? For example:
Parm1 = Optimize( ... );
{ // normal code }
if (Parm1 == 1)
{ // code }
else if (Parm1 == 2)
{ // code }
else if (Parm1 == 3)
{ // code }
else
{ // code }
Optimize runs your system for as many combinations exist from your
optimized variables (e.g. 5 x 7 x 6 ...). This number can get large
quickly. And then you have to decide which results are most
interesting from all the runs.
--- In amibroker@xxxxxxxxxxxxxxx, "Steve Dugas" <sjdugas@xxx> wrote:
>
> Hi-
>
> I'm not sure that I totally understand your question, but you can
include up to 10 seperate calls to optimize function in your
code...if that helps...
>
> Steve
> ----- Original Message -----
> From: spxer
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Saturday, April 27, 2002 10:46 AM
> Subject: [amibroker] opt this
>
>
> Hi all. I am new to AB and I don't know how to proceed on this
point.
> I want to optimize an indicator in a system test. This indicator
> requires a different length of code for each parameter setting.
The
> only way I know how to write it is as separate indicators. What
can I
> do to optimize? Thanks, Terry
>
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
>
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
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:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto: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/
|