Account CLASS

AdditionalAccountInfo PROPERTY (Dictionary)
Get additional account information  SYNTAX public Dictionary<string, AdditionalAccountInfo> AdditionalAccountInfo { get; }
Tue, Apr 10, 2018 at 6:11 AM
Balance PROPERTY (double)
Gets current balance of the account. SYNTAX public double Balance { get; } EXAMPLE An object ‘Account’ that is currently used is created in the ne...
Tue, Apr 10, 2018 at 6:12 AM
BeginBalance PROPERTY (double)
Gets balance at the beginning of the day SYNTAX public double BeginBalance { get; } EXAMPLE  An object ‘Account’ that is currently used is c...
Mon, Apr 23, 2018 at 7:13 AM
BlockedBalance PROPERTY (double)
Gets balance locked by broker or by user for withdrawal. Is always 0 in AlgoStudio. SYNTAX public double BlockedBalance { get; } EXAMPLE An ...
Mon, Apr 23, 2018 at 7:27 AM
CashBalance PROPERTY (double)
Gets sum of all settled account operations. Is always 0 in AlgoStudio. SYNTAX public double CashBalance { get; } EXAMPLE An object ‘Account’ that...
Mon, Apr 23, 2018 at 7:26 AM
Credit PROPERTY (double)
Gets money that the broker lends to the user. Is always 0 in AlgoStudio. SYNTAX public double Credit { get; } EXAMPLE An object ‘Account’ that is...
Mon, Apr 23, 2018 at 7:30 AM
Currency PROPERTY (string)
Gets base currency of account. Account CCY is always equal to the server CCY in AlgoStudio. SYNTAX public string Currency { get; } EXAMPLE ...
Mon, Apr 23, 2018 at 7:41 AM
CurrentPammCapital PROPERTY (double)
Gets your current capital available in the fund (taking in the consideration the current share price). Is always 0 in AlgoStudio. SYNTAX public doub...
Mon, Apr 23, 2018 at 7:45 AM
Equity PROPERTY (double)
Gets current equity (balance plus unrealized profit). SYNTAX public double Equity { get; } EXAMPLE An object ‘Account’ that is currently us...
Mon, Apr 23, 2018 at 7:57 AM
Id PROPERTY (string)
Gets account unique code. SYNTAX public string Id { get; } EXAMPLE An object ‘Account’ that is currently used is created in the next exampl...
Mon, Apr 23, 2018 at 7:59 AM