C2STATS |
This topic contains the following sections:
C2STATS represents a database view returning a collection of the Collective2 trading systems statistics data.
Get a Sharpe value of the system 75976336.
// Select Sharpe of the system 75976336: TABLE = from item in C2STATS where item.SystemId == 75976336 where item.StatName == "jSharpe" select item;
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.
// In theory, this returns all Collective2 statistics data: TABLE = C2STATS; // But do not do it. Actually, it does not have sense.