C2TRADES |
This topic contains the following sections:
C2TRADES represents a database view returning a collection of trades performed by Collective2 trading systems.
Note |
---|
It means: closed trades of publicly visible, active trading systems. |
Get trades of the system 75976336.
// Select trades of the system 75976336: TABLE = from trade in C2TRADES where trade.SystemId == 75976336 select trade;
In theory, you can see all trades data using this simple command: TABLE = C2TRADES;
In reality, it will probably end with the Query timeout
error.
There are about 1 million trades recorded for active Collective2 trading systems. Such data are big. Even in the case you have a fast Internet connection and you are able to download hundreds of megabytes in time, your browser will probably crash.
// In theory, this returns all C2 closed trades: TABLE = C2TRADES; // In reality, it will probably end by the "Query timeout" // error. It depends on your internet connetion speed.