FastQuant.AccountDataEntry.AccountDataEntry C# (CSharp) Méthode

AccountDataEntry() private méthode

private AccountDataEntry ( string account, AccountData values, AccountData positions, AccountData orders ) : System
account string
values AccountData
positions AccountData
orders AccountData
Résultat System
        internal AccountDataEntry(string account, AccountData values, AccountData[] positions, AccountData[] orders)
        {
            Account = account;
            Values = values;
            Positions = positions;
            Orders = orders;
        }
    }
AccountDataEntry