protected override void OnBarUpdate()
{
if(Performance.AllTrades.TradesPerformance.Currenc y.DrawDown > 5000)
{
trade_allowed = false;
}
.....does Performance.AllTrades.TradesPerformance.Currency.D rawDown get reset each day? How often does it change? Or is it a cumulative number that only increases as long as the strategy is going?
thanks,
D

Comment