Forex_Strategy_Builder.Backtester.PipsToMoney C# (CSharp) Метод

PipsToMoney() публичный статический Метод

Converts pips to money.
public static PipsToMoney ( double pips, int bar ) : double
pips double
bar int
Результат double
        public static double PipsToMoney(double pips, int bar)
        {
            return pips * InstrProperties.Point * InstrProperties.LotSize / AccountExchangeRate(Close[bar]);
        }