What is your strategy?

Discussion in 'Risk Management' started by kut2k2, Mar 28, 2014.

Thread Status:
Not open for further replies.
  1. Okay, I think I am breaking new ground in computational finance.

    Let
    CK be the continuous Kelly,
    R be the return over a given period,
    s be the standard deviation of returns,
    r be the average return.

    First, I realized that my proposed performance metric:
    Performance Metric = CK * R = (R * r) / (s^2)

    should actually be this:
    Performance Metric = CK * R
    CK = R / (s^2)
    Performance Metric = CK * R = [R / (s^2)] * R = (R^2) / (s^2)
    Notice that (R^2) / (s^2) reduces to Sharpe squared:
    (R^2) / (s^2) = (R / s)^2 = Sharpe^2


    Next, I set up the Monte-Carlo simulation to maximize Log(Sharpe^2) with respect to the original problem as stated in the beginning of this thread. Here are the top 10 results which maximize Log(Sharpe^2):

    Code:
    	R16	R14	Red
    	6	5	11
    	6	4	11
    	6	5	10
    	6	4	12
    	6	5	12
    	6	4	10
    	6	4	13
    	6	5	9
    	6	5	13
    	6	4	9
    
    Notice that the best combo, {R16: 6, R14: 5, Red:11} is pretty close to what we collectively calculated as the best in a sense of maximizing the compounded rate of return, which is {R16: 8, R14: 5, Red:11}.

    My calculated best, using Log(Sharpe^2), gives a slightly more conservative allocation, because it maximizes the compounded rate of risk-adjusted return.

    Then I thought, what if I maximize Log(Sharpe), instead of Log(Sharpe^2)? The results came out identical between the two, predictably so.

    So, my performance metric can be reduced to simply R/s, which is the Sharpe ratio.
     
    #141     Apr 3, 2014
  2. Damn it, I had a bug in the calculation of standard deviation. After fixing it, here is what I get by maximizing Log(Sharpe):

    Code:
    	R16	R14	Red
    	7	5	11
    	7	5	10
    	7	5	12
    	7	5	9
    	7	5	13
    	8	5	11
    	8	5	10
    	8	5	12
    	8	5	9
    	7	5	8
    
    Based on the results, my point is still valid (I think).
     
    #142     Apr 3, 2014
  3. One more adjustment needed, I think. In this particular problem, all betting strategies have the same number of betting opportunities. But what if we wanted to compare trading strategies with different number of trades? Since Sharpe increases with the square root of observations, I am adjusting my performance metric to this:

    Performance Metric = (R / s) / sqrt(N),
    where N is the number of trades.
     
    #143     Apr 3, 2014
  4. So if you just play Red, you will have a 24.32% advantage over the house, correct?
     
    #144     Apr 4, 2014
  5. SIUYA

    SIUYA

    famous last words uttered together.
    Thanks for the laugh :)
     
    #145     Apr 4, 2014
  6. Visaria

    Visaria

    yep.

    if you just play r16 though, you have a 289% advantage over the house.

    :D

    We're looking for the optimal allocation. I think it is what i said in my previous post.
     
    #146     Apr 4, 2014
  7. kut2k2

    kut2k2

    R-14 versus R-16

    Or

    A Tale of Two Horses

    Suppose we had the same scenario as depicted in the OP with the exception that you can't bet on Red (casino management feels a winrate greater than 50% is too attractive).

    So you can bet on any of the 34 numbers, you can bet on Black, or you can bet on any combination of those bets.

    Q: Is there any combination of {R-14, R-16} that beats a bet on R-16 alone?

    A: No. It turns out when you have two mutually exclusive bets and one is a standout, bet exclusively on the standout, either full Kelly or fractional Kelly if you are risk adverse.

    The only time you should bet on both mutually exclusive bets is when you can "blend" them with a bet like Red.
     
    #147     Apr 4, 2014
  8. Visaria

    Visaria

    I don't think that is true.
     
    #148     Apr 5, 2014
  9. kut2k2

    kut2k2

    I welcome evidence to the contrary. My analysis was not easy and it's possible I missed something.
     
    #149     Apr 5, 2014
  10. Visaria

    Visaria

    It should be obvious. Let's say you go into the casino as described in the OP but there are two of these special wheels. You can only play either red 14 or red 16 on each. If you play r16 on table 1, you are only allowed to play r14 on the other wheel. Would you just play r16 on table 1 and forget about playing r14 on the other one? Of course not. You would play both wheels. This is scenario is identical to having one wheel where you can either play r14 or r16 or both. You simply allocate the respective kelly fraction to each bet per spin.
     
    #150     Apr 5, 2014
Thread Status:
Not open for further replies.