Forex_Strategy_Builder.Backtester.MoneyEquityDrawdown C# (CSharp) Méthode

MoneyEquityDrawdown() public static méthode

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