I am trying to simulate my risk management for backtest, where I am planning to determine the account size as to:
accountEquityToTrade = 100000.0 + obj.Performance.AllTrades.TradesPerformance.GrossP rofit - obj.Performance.AllTrades.TradesPerformance.GrossL oss;
I would like to replace the hardcoded initial equity of 100,000.0 by the value that is configured by the user in the parameter setting. Is there a way to programmatically read this initial account size parameter.
Thanks,
Martin

Comment