Click or drag to resize
C2EQUITY

This topic contains the following sections:

C2EQUITY represents a database view returning a collection of the Collective2 trading systems accounts data (equities) .

Note Note

It means the equity data of publicly visible, active trading systems.

Example

Get an equity data of the system 75976336.

C#
// Select an account equity of the system 75976336
TABLE = from eqdata in C2EQUITY
        where eqdata.SystemId == 75976336
        select eqdata;
Code
code 01
Result
c 2equitycode 01 Result
Do not run!

In theory, you can see all Collective2 trading systems equities data using this simple command: TABLE = C2EQUITY;

In reality, it will end with the Query timeout error.

Collective2 equity data are simply too big to download. Even in the case you have a fast Internet connection and you are able to download several gigabytes in time, your browser will probably crash.

Do not run!
// In theory, this returns all C2 systems equities data:
TABLE = C2EQUITY;
// In reality, it ends by the "Query timeout" error
// because that data are simply too big.
Time-out
donotruncode 01
See Also