FastQuant.Account.Deposit C# (CSharp) Method

Deposit() public method

public Deposit ( System.DateTime dateTime, double value, byte currencyId = CId.USD, string text = null, bool updateParent = true ) : void
dateTime System.DateTime
value double
currencyId byte
text string
updateParent bool
return void
        public void Deposit(DateTime dateTime, double value, byte currencyId = CId.USD, string text = null,
            bool updateParent = true)
        {
            Add(dateTime, value, currencyId, text, updateParent);
        }

Same methods

Account::Deposit ( double value, byte currencyId = CId.USD, string text = null, bool updateParent = true ) : void