Account CLASS

ReservedBalance PROPERTY (double)
Gets current cash position for the account. It's a sum of all settled account operations minus negative unsettled account operations. It's equal to ...
Mon, Apr 23, 2018 at 9:03 AM
Status PROPERTY (TradingStatus)
Gets the trade status of the account. In AlgoStudio is always Active. SYNTAX public TradingStatus Status { get; } EXAMPLE An object ‘Accoun...
Mon, Apr 23, 2018 at 9:05 AM
StopReason PROPERTY (StopTradingReason)
Gets reason why trading is stopped on account. In AlgoStudio is always NotStopped. SYNTAX public StopTradingReason StopReason { get; } EXAMPLE ...
Mon, Apr 23, 2018 at 9:06 AM
TodayFees PROPERTY (double)
Gets fees paid today. SYNTAX public double TodayFees { get; } EXAMPLE An object ‘Account’ that is currently used is created in the next exam...
Mon, Apr 23, 2018 at 9:08 AM
TodayNet PROPERTY (double)
Gets total profit or loss realized from positions today. SYNTAX public double TodayNet { get; } EXAMPLE An object ‘Account’ that is currentl...
Mon, Apr 23, 2018 at 9:09 AM
TodayTrades PROPERTY (int)
Gets number of trades made for today. SYNTAX public int TodayTrades { get; } EXAMPLE An object ‘Account’ that is currently used is created ...
Mon, Apr 23, 2018 at 9:11 AM
TodayVolume PROPERTY (double)
Gets total volume traded for today. SYNTAX public double TodayVolume { get; } EXAMPLE An object ‘Account’ that is currently used is created...
Mon, Apr 23, 2018 at 9:13 AM
Type PROPERTY (AccountType)
Retrieves account's type. SYNTAX public AccountType Type { get; } EXAMPLE using System; using System.Collections; using System.Collectio...
Mon, Apr 23, 2018 at 9:15 AM
User PROPERTY (User)
Gets access to all user parameters. SYNTAX public User User { get; } EXAMPLE An object ‘User’ for the currently selected account is created ...
Mon, Apr 23, 2018 at 9:16 AM
FormatValue (double value) MEDTHOD (Return: string)
Cuts the number of digits to a standard balance dimension. SYNTAX public string FormatValue (double value) PARAMETERS value — double  numbe...
Mon, Apr 23, 2018 at 9:25 AM