User Field Formula
Create custom columns to track metrics not built into the system (e.g., clicks-to-outs ratio per trader). User Field formulas are purely informational and don't affect trading. Trading logic is controlled by Trade Formula.
For User Field First you need to add the display of the “User Field” column (Settings→ Layouts)
Then in Settings - CJSettings - User Field enter the name of the User Field Name, the name doesn't matter, it's just what will be displayed as the title of the corresponding column in Trade.
In User Field Formula you need to enter the formula itself. For example, if you need to know the ratio of clicks to outs for each trader
@round($d['day']['cd']/$d['day']['od'])*100;
In general, the following variables are available.
[day] => Array
(
[rd] => raw daily
[ud] => unique daily
[od] => out daily
[cd] => clicks daily total
[ctd] => clicks to trade daily
[cud] => clicks to galleries daily
[quality] => quality daily total
[quality_url] => quality to galleries daily
[pr] => proxy in (hits, not %)
[pr_out] => proxy out (hits, not %)
[ch] => cheat clicks
[ncd] => next click
[user_count] => user count
[user_dis] => user count
[last_click] => last click
[thishouru] => this hour uni
[thishourr] => this hour raw
[thishouro] => this hour out
[thishourct] => this hour clicks to trade
[thishourcu] => this hour to galleries
[thishourcq] => this hour quality
[thishourcq_url] => this hour quality to galleries
[thishournc] => this hour next click
[thishour_user_count] => this hour user count
[thishour_user_dis] => this hour user dis
)
[prod] => Array
(
[hour_trade] => 0
[hour_total] => 0
[day_trade] => 0.359
[day_total] => 1.06
[hour_out2click] => 0
[day_out2click] => 1.0396226415094
)
[user_vars] => Array (% of trade)
(
[day_count] => 78
[day_dis] => 0
[hour_count] => 0
[hour_dis] => 0
)
Examples
Skim for each trader
@round($d['day']['cud']/$d['day']['cd']*100);
Effectiveness
@round(($d['day']['cd']/$d['day']['od'])*100);
