|
|
|
|
|
by dan-robertson
1263 days ago
|
|
1. Im not sure that’s what the Kelly criterion is but I didn’t look it up. 2. Arithmetic mean of log returns is the same as the geometric mean of returns. Indeed it’s pretty typical to work with log returns for this reason as adding is easier/better for computers than multiplying. This equivalence is easy to prove: gm(returns) = prod(returns)^(1/N)
log(gm(returns)) = 1/N * log(prod(returns))
= 1/N * sum(log(returns))
= mean(log(returns))
gm(returns) = exp(mean(log(returns)))
Where returns is a list of the multipliers to go from the values before/after the returns, eg it has 1.01 not 1%. |
|