PureBytes Links
Trading Reference Links
|
Hello,
Here comes the formula:
perma = Optimize("perma", 5, 1, 10, 1 );
perstd = Optimize("perstd", 10, 2, 20, 1 );
Buy=Cross(C, MA(C,perma)+StDev(C,perstd));
Sell=Cross(MA(C,perma),C);
Please read "Tutorial" section of User's guide to find out
more about optimization.
Best regards,
Tomasz Janeczko
===============
AmiBroker - the comprehensive share manager.
http://www.amibroker.com
----- Original Message -----
From: "Ermanno" <cooprimavera@xxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Saturday, October 13, 2001 5:31 PM
Subject: [amibroker] optimization
> Hello, tanks for your help and excuse me for my poor english :-(
>
> I would like to optimize the following formula but I am not able..
>
>
> buy=cross(c, ma(c,5)+stdev(c,10));
> sell=cross(ma(c,5),c);
>
> every optimization gives the same results, I would like to optmize the
> arraies of ma(c,5) and stdev(c,10),
>
> how can I do?
>
> Thank you,
> Ermanno
>
>
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
|