C2SIGNALS |
This topic contains the following sections:
C2SIGNALS represents a database view returning a collection of the Collective2 trading signals.
Note |
---|
It means: closed, publicly visible signals of active trading systems. |
Get signals of the system 75976336.
// Select signals of the system 75976336 TABLE = from signal in C2SIGNALS where signal.SystemId == 75976336 select signal;
In theory, you can see all Collective2 trading signals data using this simple command: TABLE = C2SIGNALS;
In reality, it will end with the Query timeout
error.
Collective2 signals 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.
// In theory, this returns all C2 trading signals: TABLE = C2SIGNALS; // In reality, it ends by the "Query timeout" error // because that data are simply too big.