Pages:
Author

Topic: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game ! (Read 3964 times)

legendary
Activity: 1568
Merit: 6660
bitcoincleanup.com / bitmixlist.org
Hi,

you can try with this one,
https://www.bitso.me/hi-lo-calc.php

it does 1 million rolls in 0.5 seconds (on i7 8gb ram with chunk size 20000) without locking browser.
You can test also billions.

I suggest you beginning at 10^-8 as base bet, 1 satoshi.

Not graphs yet.. but I'll add more stuff in future.
Use Strategy=0 for classic martingale.

Cheers.

Nice tool.

Does the HIGH/LOW box only take 0 and 1 as inputs? It's not very clear which is which so I suggest making this a checkbox stating whether you want to roll high (and just default to low if it's not checked).

You should also display specifically the settings each strategy uses without having to guess which number it is. I'm not sure how many strategies you implemented so making some kind of summary for each that can be viewed all at once will be useful.
newbie
Activity: 22
Merit: 2
Hi,

you can try with this one,
https://www.bitso.me/hi-lo-calc.php

it does 1 million rolls in 0.5 seconds (on i7 8gb ram with chunk size 20000) without locking browser.
You can test also billions.

I suggest you beginning at 10^-8 as base bet, 1 satoshi.

Not graphs yet.. but I'll add more stuff in future.
Use Strategy=0 for classic martingale.

Cheers.
legendary
Activity: 3808
Merit: 1723
Up to 300% + 200 FS deposit bonuses
This is nice. Its pretty much like the Satoshi Dice simulator i've been using for years.

http://strtart.in/satoshi/satoshi.htm

Very interesting features will look into them Smiley

I've been using it for a few years to backtest my strategies. But the problem is that if you choose like 10,000 roll or higher, it will lag your browser. Thats the only negative aspect to it.
newbie
Activity: 50
Merit: 0
newbie
Activity: 14
Merit: 0
I'll be releasing an update later tonight Smiley
newbie
Activity: 14
Merit: 0
This is nice. Its pretty much like the Satoshi Dice simulator i've been using for years.

http://strtart.in/satoshi/satoshi.htm

Very interesting features will look into them Smiley
hero member
Activity: 882
Merit: 1000
This is nice. Its pretty much like the Satoshi Dice simulator i've been using for years.

http://strtart.in/satoshi/satoshi.htm

I don't know that site before but it certainly looks and works great. It would be perfect if we can set the win chance and multiplier freely.
legendary
Activity: 3808
Merit: 1723
Up to 300% + 200 FS deposit bonuses
This is nice. Its pretty much like the Satoshi Dice simulator i've been using for years.

http://strtart.in/satoshi/satoshi.htm
newbie
Activity: 14
Merit: 0
If you'd like to make money you need  to code more complicated things like
a betting martingale bot.

I think he is not making money here because the title is FREE. Even if he can code a betting bot, he will need to code a betting bot that is better than seuntjie's bot and it is hard to sell it as well because seuntjie's bot is very famous around here

That's a good idea but what's the point of a martingale bot when u can use autobetting?

the purpose of this little script is to just calculate the odds of going bust at certain win chance and multiplier percentages; it lets people see how likely it is that they will bust when using martingale, although im of the opinion that martingale will always bust.

Very interesting concept i think i might do some research on that and see
legendary
Activity: 1288
Merit: 1043
:^)
If you'd like to make money you need  to code more complicated things like
a betting martingale bot.

I think he is not making money here because the title is FREE. Even if he can code a betting bot, he will need to code a betting bot that is better than seuntjie's bot and it is hard to sell it as well because seuntjie's bot is very famous around here

That's a good idea but what's the point of a martingale bot when u can use autobetting?

the purpose of this little script is to just calculate the odds of going bust at certain win chance and multiplier percentages; it lets people see how likely it is that they will bust when using martingale, although im of the opinion that martingale will always bust.
newbie
Activity: 14
Merit: 0
If you'd like to make money you need  to code more complicated things like
a betting martingale bot.

I think he is not making money here because the title is FREE. Even if he can code a betting bot, he will need to code a betting bot that is better than seuntjie's bot and it is hard to sell it as well because seuntjie's bot is very famous around here

That's a good idea but what's the point of a martingale bot when u can use autobetting?
legendary
Activity: 2436
Merit: 1804
guess who's back
If you'd like to make money you need  to code more complicated things like
a betting martingale bot.

I think he is not making money here because the title is FREE. Even if he can code a betting bot, he will need to code a betting bot that is better than seuntjie's bot and it is hard to sell it as well because seuntjie's bot is very famous around here

as I remember first he wanted to sell it , but because there are many free calculators he changed his mind
legendary
Activity: 1540
Merit: 1013
If you'd like to make money you need  to code more complicated things like
a betting martingale bot.

I think he is not making money here because the title is FREE. Even if he can code a betting bot, he will need to code a betting bot that is better than seuntjie's bot and it is hard to sell it as well because seuntjie's bot is very famous around here
hero member
Activity: 602
Merit: 500
In math we trust.
As people already said it's not that hard to code that.
I coded something similar last month in python.
It took me like 30 minutes of effort.
If you'd like to make money you need  to code more complicated things like
a betting martingale bot.
legendary
Activity: 1288
Merit: 1043
:^)
What is EV? Can anyone explain it to a newbie in this type of business here? I would be really happy if someone could link me to some sites where is this explained and easy said.

EV is expected value. https://en.wikipedia.org/wiki/Expected_value

example, since primedice has an edge of 1%, the EV is negative, and over the course of a large number of straight rolls (lets say, a million) you would be expected to have 99% of the bankroll that you started with.

Doesn't this make the casino unfair? I think that if there's this, we can't win in a long run, right?

well that's the point of a casino; casinos are for-profit entities, and the edge almost guarantees them that they will come out ahead in the long run. in real life casinos too, all the games and slots there are designed in some way to make the casino money. there's nothing unfair about that, fairness is if your rolls or results are random as they should be in an internet casino.
legendary
Activity: 3472
Merit: 10611
does double provide enough precision?
isn't decimal more suitable in these situations?

here is a little bit of clean-up , hope you don't mind me meddling  Roll Eyes
Code:
Console.WriteLine("Input the Chance of Losing 0-100% ");
float chance = float.Parse(Console.ReadLine());
Console.WriteLine("Input tries ");
int tries = int.Parse(Console.ReadLine());
Console.WriteLine("Input Amount of Bitcoins you wish to gamble ");
float btc = float.Parse(Console.ReadLine());
Console.WriteLine("Input House Edge 0-100% ");
float house_edge = float.Parse(Console.ReadLine());

I think you are right but float seems to work just fine for now.
I will work it more later tonight and update it Smiley

i am just learning c# myself as a hobby and i am not quite sure about all the number variable types and these things always confuse me.
i might run some different tests with a bunch of numbers to make sure.

You want my 2 satoshi's on that ?

Here you go: Fuck calculations ! Gambe for fun, not for profits. That's the only way it should be done.

nah. the fun of coding is much more than gambling Roll Eyes
newbie
Activity: 14
Merit: 0
You want my 2 satoshi's on that ?

Here you go: Fuck calculations ! Gambe for fun, not for profits. That's the only way it should be done.

I understand your point of view but there's people who enjoy analysis Smiley
legendary
Activity: 2464
Merit: 1037
CEO @ Stake.com and Primedice.com
You want my 2 satoshi's on that ?

Here you go: Fuck calculations ! Gambe for fun, not for profits. That's the only way it should be done.
newbie
Activity: 14
Merit: 0
you can't level up your game..
its all based on luck and if your ready to lose any winnings will be a suprise.
BEFORE you deposit you should consider do afford to lose that amount.
and if you think there are some winning strategy you are SOOO wrong.
regards.
-Katerniko1

You are right BUT over a large amount of plays you should be back to 99% of your bankroll since the house edge is 1%

Also the EV will always be negative due to the house edge but u can always calculate what it would be most profitable to play on
Pages:
Jump to: