From http://manual.zorro-trader.com/tips.htm

char name[40]; // string of maximal 39 characters
strcpy(name,Asset);
strcat(name,":");
strcat(name,Algo);
var equity = EquityShort+EquityLong;
if(equity != 0) plot(name,equity,NEW|AVG,BLUE);

Do this after each asset call, store the equities in variables and plot them at the end. Itīs the only thing we can do for now.

Regarding statistics i think you can access several metrics at portfolio level, but i have never tried to access them at asset level after each one has finished processing...

You can try what AndreAMD has stated.

Last edited by brax; 09/26/17 17:32.