FastQuant.Account.Withdraw C# (CSharp) Method

Withdraw() public method

public Withdraw ( 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 Withdraw(DateTime dateTime, double value, byte currencyId = CId.USD, string text = null,
            bool updateParent = true)
        {
            Add(dateTime, -value, currencyId, text, updateParent);
        }

Same methods

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