Click or drag to resize
C2STATS

This topic contains the following sections:

C2STATS represents a database view returning a collection of the Collective2 trading systems statistics data.

Example

Get a Sharpe value of the system 75976336.

C#
// Select Sharpe of the system 75976336:            
TABLE = from item in C2STATS 
        where item.SystemId == 75976336 
        where item.StatName == "jSharpe"
        select item;
Code
c 2statscode 01
Result
c 2statscode 01result
Do not run!

In theory, you can see all Collective2 statistics using this simple command: TABLE = C2STATS;

In reality, you will download millions of rows and your browser will not be able to handle them.

Do not run!
// In theory, this returns all Collective2 statistics data:
TABLE = C2STATS;
// But do not do it. Actually, it does not have sense.
See Also

Reference