his fund is averaging 66% returns every year but loses on 49% of their trades.
they cut losses fast when their model doesnt shake out, and when it does shake out they bink a few points. and it adds up.
$ python3 ./simons.py
Starting roll: 10000
Final roll: 16777.733632129108
Gains: 1.6777733632129108
easy mark, sfo.
they cut losses fast when their model doesnt shake out, and when it does shake out they bink a few points. and it adds up.
Code:
roll = 10000 print("Starting roll: ", roll) start = roll # place 98 bets. 49 lose 1%, 49 gain 2%. for n in range(49): # we enter a trade and lose 1% roll = (roll * .99) # we enter a trade and win 2% roll = (roll * 1.02) # bets 50 & 51, both gain 2% roll = (roll * 1.02) roll = (roll * 1.02) print("Final roll: ", roll) print("Gains: ", ( roll / start ))
Starting roll: 10000
Final roll: 16777.733632129108
Gains: 1.6777733632129108
easy mark, sfo.
Comment