Pages:
Author

Topic: BetKing.io - 20% Rakeback Christmas Bonus - Most trusted Bitcoin Dice site - page 92. (Read 194693 times)

legendary
Activity: 954
Merit: 1000
I haven't been paying much attention to BTC gambling websites recently but I noticed PD are blocking people from the U.S. Is it the same for PRC?
Doesn't look like PRC is blocking players from any specific countries as of now.

The sites doing great seems we are at a big profit now .
sr. member
Activity: 577
Merit: 283
I guess nobody's posted about it here yet, but Mr. "nameless" had a very short run with that 330 BTC.


Mayne,seems like a big loss to me. I guess its the "high-feeling" that makes you keep betting even after you know you may loose all.
sr. member
Activity: 462
Merit: 250
I haven't been paying much attention to BTC gambling websites recently but I noticed PD are blocking people from the U.S. Is it the same for PRC?
sr. member
Activity: 321
Merit: 250
I guess nobody's posted about it here yet, but Mr. "nameless" had a very short run with that 330 BTC.

newbie
Activity: 22
Merit: 0
wow is site good and fast i,m new in here
Account Id: 80594
legendary
Activity: 2884
Merit: 1117
I'll sell my user on PRC Tongue

User ID: 469
I'm an old member, and it has 69 in it Cheesy

It just looks cool when betting and I had pretty awesome luck when I bet there before.

Starting price: 0.02 BTC

Max: 0.2

Ending auction in 2 days Smiley
Man,that goes on digital goods or auctions  Tongue
full member
Activity: 182
Merit: 100
I'll sell my user on PRC Tongue

User ID: 469
I'm an old member, and it has 69 in it Cheesy

It just looks cool when betting and I had pretty awesome luck when I bet there before.

Starting price: 0.02 BTC

Max: 0.2

Ending auction in 2 days Smiley
legendary
Activity: 954
Merit: 1000
Damnn.. Might change my Kelly this time, was a crazy ride last time :p
Definitely. I was think of being able to set up some kind of bot where I could program the bot in a way that invest and divest could happen to change the kelly based on the bet size. So I could decrease my kelly for bets higher than 10 BTC and keep it higher for lower bets. This way I can avoid seeing those massive swings when a high roller comes along.
legendary
Activity: 1876
Merit: 1295
DiceSites.com owner
Damnn.. Might change my Kelly this time, was a crazy ride last time :p
sr. member
Activity: 321
Merit: 250
Guess who's back for more....

legendary
Activity: 882
Merit: 1000
Made a few speed improvements over the past few days.

Also chat and private messages are persistent and do not clear on server restarts.

hero member
Activity: 1328
Merit: 563
MintDice.com | TG: t.me/MintDice
yup, interesting, but not realistic or practical
hero member
Activity: 882
Merit: 1000
Exhausted
If you bet 2x kelly of your fixed bankroll long term, you are guaranteed to bust!

heheh. That's fun to write a toy simulator for:

-lines of code-


That is an interesting analysis, though in reality it is a lot more easy to have "won all the money in the world" for 2 reasons. Tongue
1. There won't be 1e40 times of your initial investment in the world available for you to win.
2. Even with a 2x or 3x or 10x Kelly setup, very few bets are that huge. Most of the bets are of a size of just a tiny tiny fraction of max profit.
legendary
Activity: 1463
Merit: 1886
If you bet 2x kelly of your fixed bankroll long term, you are guaranteed to bust!

heheh. That's fun to write a toy simulator for:

Code:
var kelly = 1;

function roll() {
  return Math.random() > 0.495 ? 1 : -1;
}


var wins = 0;
var loses = 0;
function run() {

  var bankroll = 1;

  for (var j = 1; true; ++j) {

    var bet = bankroll * 0.01 * kelly;
    bankroll += bet * roll();

    if (bankroll > 1e40) {
      wins++;
      console.log('Won all the money in the world. Won: ', wins, ' Busted: ', loses);
      return rerun();
    }
    if (bankroll < 1e-40) {
      loses++;
      console.log('Busted! Won: ', wins, ' Busted: ', loses);
      return rerun();
    }

  }
}

function rerun() {
  setTimeout(run, 0);
}

run();

Sample output of running with a 1x kelly:

Code:
...
Won all the money in the world. Won:  189  Busted:  0
Won all the money in the world. Won:  190  Busted:  0
Won all the money in the world. Won:  191  Busted:  0
...

Sample output of running with a 2x kelly:
Code:
Busted! Won:  38  Busted:  83
Won all the money in the world. Won:  39  Busted:  83
Busted! Won:  39  Busted:  84
Busted! Won:  39  Busted:  85
Busted! Won:  39  Busted:  86
Busted! Won:  39  Busted:  87
Busted! Won:  39  Busted:  88
Won all the money in the world. Won:  40  Busted:  88


Sample output of running with a 3x kelly:
Code:
Busted! Won:  0  Busted:  191
Busted! Won:  0  Busted:  192
Busted! Won:  0  Busted:  193
Busted! Won:  0  Busted:  194
Busted! Won:  0  Busted:  195
sr. member
Activity: 350
Merit: 250
If you bet 2x kelly of your fixed bankroll long term, you are guaranteed to bust!
yeah its true
newbie
Activity: 45
Merit: 0
If you bet 2x kelly of your fixed bankroll long term, you are guaranteed to bust!
sr. member
Activity: 277
Merit: 255
I am confused with the risk factor for investing,

I was hoping if I invest 1BTC @ 10% kelly that would 20 times more profit share than some investing 1BTC @.5% kelly.

If not, Can someone explain without formulas :p

its a little under 20x because of diminishing returns but close to 20x

you have a much higher risk of loss too though.

Perfect! I actually suggested this to the just dice guy a long time ago so great to see it implemented (y)
hero member
Activity: 1328
Merit: 563
MintDice.com | TG: t.me/MintDice
I am confused with the risk factor for investing,

I was hoping if I invest 1BTC @ 10% kelly that would 20 times more profit share than some investing 1BTC @.5% kelly.

If not, Can someone explain without formulas :p

its a little under 20x because of diminishing returns but close to 20x

you have a much higher risk of loss too though.
legendary
Activity: 1717
Merit: 1125
Do they have a api?

The betting api is accessible via signalr. I'm sure Dean wouldn't mind helping you get things up and running if you have a worthwhile app for the site. You can see my implementation of the api at https://github.com/Seuntjie900/DiceBot/blob/master/DiceBot/PRC.cs

I am confused with the risk factor for investing,

I was hoping if I invest 1BTC @ 10% kelly that would 20 times more profit share than some investing 1BTC @.5% kelly.

If not, Can someone explain without formulas :p

It does exactly that, BUT it also means that you carry 20x more of the losses share than investing at 0.5% kelly
sr. member
Activity: 277
Merit: 255
I am confused with the risk factor for investing,

I was hoping if I invest 1BTC @ 10% kelly that would 20 times more profit share than some investing 1BTC @.5% kelly.

If not, Can someone explain without formulas :p
Pages:
Jump to: