>
>
> PI and Kelly (and in my case the added drawdown ratio), taken together as
> combined measurement of CPI, should be as performance index good enough for
> the moment.
>
> What do you think, Eugene?
>
>
Agreed. I've experimented with different CPI implementations, and came to
the conclusion that the most stable and meaningful performance metric is
the one that includes PI and Kelly. Here is my current CPI implementation:

public double getCPI() {
    double performanceIndex = getPerformanceIndex();
    double kellyCriterion = getKellyCriterion();
    kellyCriterion = kellyCriterion >= 0 ? Math.sqrt(kellyCriterion) : 0;
    return performanceIndex * kellyCriterion;
}

-- 
You received this message because you are subscribed to the Google Groups 
"JBookTrader" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/jbooktrader.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to