The pic1 is the report with Backtest,but it only have the information for the trading day.
I wanna get "everyday" 's detail report like pic2.
Could someone tell me what to do ?
tks!
and this is my afl
SetTradeDelays( 1, 1, 1, 1 );
BuyPrice = Open;
SellPrice = Open;
PosQty = Optimize( "PosQty", 1, 1, 1, 1 );
SetOption ( "maxopenpositions", PosQty );
SetPositionSize( 100 / PosQty, spsPercentOfEquity );
MAL1 = Optimize( "MAL1", 8, 1, 10, 2 );
MAL2 = Optimize( "MAL2", 36, 10, 120, 20 );
MAL3 = Optimize( "MAL3", 4, 1, 10, 2 );
MAL4 = Optimize( "MAL4", 42, 5, 225, 20 );
MA1 = MA( C, MAL1 );
MA2 = MA( C, MAL2 );
MA3 = MA( C, MAL3 );
MA4 = MA( C, MAL4 );
Buy = Cross( MA1, MA2 );
Sell = Cross ( MA4, MA3 );