1. Using custom backtester, high level, I tried to add two columns to
the AA view list. first column using: trade.AddCustomMetric("Profit so
far", PosSumProfit); second column using: trade.AddCustomMetric("Loss so
far", NegSumProfit);However, what I get instead is one column with label
for which ever happened first. It contains both correct "Profit so far"
and "Loss so far" values. 2. I do not want all of the default columns,
just ones I specify. Can I do this with high level custom backtester? If
not, then with what? Thanks.-- Keith