Click or drag to resize
C2SIGNALS

This topic contains the following sections:

C2SIGNALS represents a database view returning a collection of the Collective2 trading signals.

Note Note

It means: closed, publicly visible signals of active trading systems.

Example

Get signals of the system 75976336.

C#
// Select signals of the system 75976336
TABLE = from signal in C2SIGNALS 
        where signal.SystemId == 75976336 
        select signal;
Code
signalscode 01
Result
signalscode 01result
Do not run!

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.

Do not run!
// 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.
Time-out
signalscodedonotrun
See Also