Optimization parameters results

Posted By: Ricard

Optimization parameters results - 02/14/20 22:24

Hi!
Just started to use Zorro!
I am testing some dummy strategies and right now I am blocked trying to get the results of an optimization.
The code of the very simple strategy is this:

function run()
{
set(PARAMETERS|TESTNOW);
setf(TrainMode,BRUTE);
vars Prices = series(priceClose(0));
vars SMA100 = series(SMA(Prices,100));
vars SMA30 = series(SMA(Prices,30));
Stop = optimize(10, 5, 15, 1)*PIP;

if(crossOver(SMA30,SMA100))
enterLong();
if(crossUnder(SMA30,SMA100))
enterShort();
}

And the problem is that I do not know what flags I need to use to get the result of each of the 10 tests. The file .par just tell me what is the best....
Help please!!
Posted By: Petra

Re: Optimization parameters results - 02/15/20 13:22

Its "Curves". Look in the manual under exported file formats.
© 2024 lite-C Forums