Click or drag to resize
IQueryRunnerC2EQUITY Property
Collective2 raw equity data view.

Namespace:  C2ExplorerServiceStack.Logic.Interfaces
Assembly:  C2ExplorerServiceStack.Logic (in C2ExplorerServiceStack.Logic.dll) Version: 1.0
Syntax
C#
ITable<c2ex_accountequity> C2EQUITY { get; set; }

Property Value

Type: ITablec2ex_accountequity

[Missing <value> documentation for "P:C2ExplorerServiceStack.Logic.Interfaces.IQueryRunner.C2EQUITY"]

Remarks
Raw equity data are calculated from trades results. Subtract commissions fees and subscription fees to obtain net equity.
Examples
Equity
// In theory, this returns all C2 systems equities:
// TABLE = C2EQUITY;
// In reality, it ends with "a timeout error" because a data are simply too large.
// Select an account equity for the system 75976336:

TABLE = from systeq in C2EQUITY where systeq.SystemId == 75976336 select systeq;
See Also