Since people seem confused about the investments I will give my view on it. Just because I like transparency and want people to understand it.
Normally we calculate the max_profit like this on sites where we know the house_edge, kelly and bankroll:
max_profit = house_edge * kelly * bankrollWe can use the same for MP and change max_profit to bet_size, then calculate the house_edge for the investors instead:
house_edge = bet_size / (kelly * bankroll)(kelly is always 1, bankroll is atm
BTC304 and bet_size is whatever the player bets)
For a
BTC2.5 bet: 2.5/(1*304) = 0.00822368421 (= 0.82% HE)
For a
BTC1.1 bet: 1.1/(1*304) = 0.00361842105 (= 0.36% HE)
For a
BTC0.3 bet: 0.3/(1*304) = 0.0009868421 (= 0.0986% HE)
For a
BTC0.05 bet: 0.05/(1*304) = 0.00016447368 (= 0.0164% HE)
For a
BTC0.001 bet: 0.001/(1*304) = 0.00000328947 (= 0.00032894736% HE)
Now the HE for the app+MP is simply "the rest" (app gets 50% and MP gets 50% of "the rest".) This depends on how much house edge the site gives to the players and is pretty simply:
commission=site_house_edge - investor_house_edge
app_profit = commission / 2 (same for MP_profit - the commission is equally divided by app + MP)0.1% HE siteThe first 2 bets are simply too big for 0.1% HE sites. The third bet is just small enough, the commission and app_profit will be:
For a
BTC0.3 bet: 0.1 - 0.0986 = 0.0014% HE and 0.0007% each
For a
BTC0.05 bet: 0.1 - 0.0164 = 0.0836% HE and 0.0418% each
For a
BTC0.001 bet: 0.1 - 0.00032894736 = 0.09967105264% HE and 0.04983552632% each (pretty close to 50% of the house edge heh
)
1% HE siteFor a
BTC2.5 bet: 1 - 0.82 = 0.18% HE and 0.09% each
For a
BTC1.1 bet: 1 - 0.36 = 0.64% HE and 0.32% each
For a
BTC0.3 bet: 1 - 0.0986 = 0.90% HE and 0.45% each (already getting close to 50% of HE each
)
For a
BTC0.05 bet: 1 - 0.0164 = 0.98% HE and 0.48% each
For a
BTC0.001 bet: 1 - 0.00032894736 = 0.999% HE and 0.499% each
A few random notes:
- The "commission"/HE that app+MP earn are guaranteed, so risk-free. The investor's HE not.
- One could say most wagered and profits come from bigger players, so profits can look better for investors than you might expect.
- The investor is always EV+ based on 1x kelly.
- Obviously we can assume the "commission" on average is more than on other invest-sites (even though it depends on bet-size.) However to calculate how much profit the investors can expect, you always still have to consider the bankroll too. At MP you will get a pretty big share of the BR/action - so even with the relative high commission there is a very decent chance you could still earn more than other sites if the wagered amounts are the same. I am planning to make good estimations of this based of the info on the MP site and list them real-time on my site. But this is a slightly complicated calculation.
- If I made a mistake or if my whole explanation is wrong, please correct me