Account CLASS
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
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
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
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
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
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
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
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
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
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