Forex_Strategy_Builder.Backtester.MoneyEquityDrawdown C# (CSharp) Method

MoneyEquityDrawdown() public static method

Returns the Equity Drawdown in currency.
public static MoneyEquityDrawdown ( int bar ) : double
bar int
return double
        public static double MoneyEquityDrawdown(int bar)
        {
            return equityDrawdown[bar] * InstrProperties.Point * InstrProperties.LotSize / AccountExchangeRate(Close[bar]);
        }