FastQuant.Account.GetValue C# (CSharp) Method

GetValue() public method

public GetValue ( byte currencyId ) : double
currencyId byte
return double
        public double GetValue(byte currencyId) => this.positionsByCurrencyId[currencyId]?.Value ?? 0;
    }

Usage Example

Example #1
0
 public double GetAccountValue(byte currencyId) => Account.GetValue(currencyId);