Bitcoin Forum

Economy => Gambling => Topic started by: christopherkal on July 23, 2015, 12:10:27 AM



Title: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game !
Post by: christopherkal on July 23, 2015, 12:10:27 AM
Hello , i am currently developing a tool to use with primedice that will (Hopefully) calculate a lot of things such as EV etc , i understand primedice's EV is always negative due to the 0.5% edge but i'll do my best.


This is it right now:
https://i.imgur.com/c3FHIli.png

What more would you like to see?
Should i sell it eventually or distribute it free?

The program is developed using Python but i will port it to C# later for easy use.

Thanks :)



Basic Source C#:
Quote
 
            Console.WriteLine("Input the Chance of Losing 0-100% ");
            string strchance = Console.ReadLine();
            float chance = float.Parse(strchance);
            Console.WriteLine("Input tries ");
            string strtries = Console.ReadLine();
            int tries = int.Parse(strtries);
            Console.WriteLine("Input Amount of Bitcoins you wish to gamble ");
            string strbtc = Console.ReadLine();
            float btc = float.Parse(strbtc);
            Console.WriteLine("Input House Edge 0-100% ");
            string strhouse_edge = Console.ReadLine();

            float house_edge = float.Parse(strhouse_edge);
            
            chance = chance / 100;
            house_edge = chance / 100;            

            float EV = (float)Math.Pow(chance, tries);
            float total = 0.0f;
            float lost = 0;
            for (int i = 0; i < tries; i++)
            {
                lost = btc * 2;
                total += (float)lost;
            }
            Console.WriteLine("The chance of a {0} losing streak is {1}%", tries, EV * 100);
            Console.WriteLine("That means {0} in 100 tries or {1} in 1000 tries", EV * 100, EV * 1000);
            Console.WriteLine("[MartinGale]Amount of BTC that has to be gambled to win back from the loss spree {0}", total);



If u wish to donate : 1Pc5wLrQjYQqLpQWZxyCjNpacsqSECuu1

More work will be done in the upcoming days.



EDIT: Minor update added icon too :)


Title: Re: I am creating a primedice calculator.
Post by: subSTRATA on July 23, 2015, 12:14:39 AM
first off, primedice's edge is 1%, and theres not really any point to selling this, as this isnt that hard to code (could probably be done in under an hour with basic knowledge), and tools like this already exist. if someone could link said dice calculator tools here that'd be great.


Title: Re: I am creating a primedice calculator.
Post by: christopherkal on July 23, 2015, 12:27:14 AM
Well i understand if i'm going to sell it i wouldn't put over the price of 5$

I haven't found anything really useful and i'm looking into advancing it a lot , even calculating total EV but i need more ideas to know how to work it :)


Title: Re: I am creating a primedice calculator.
Post by: subSTRATA on July 23, 2015, 12:33:55 AM
Well i understand if i'm going to sell it i wouldn't put over the price of 5$

I haven't found anything really useful and i'm looking into advancing it a lot , even calculating total EV but i need more ideas to know how to work it :)
http://www.statisticshowto.com/how-to-calculate-expected-value-in-statistics/
http://statistics.about.com/od/Formulas/a/What-Is-The-Formula-For-Expected-Value.htm

just do a google search... but the expected value wont really change, it will always be .99 with the house edge.


Title: Re: I am creating a primedice calculator.
Post by: everaja on July 23, 2015, 12:43:43 AM

Should i sell it eventually or distribute it free?


Cool , nice effort !
I guess you should distribute this tool as free , as it will help you to gain Popularity and in future it can work as vouch for your next project.
But there is no point of this tool , as primedice offers 1% edge , moreover there are much tools available in market and one can code it for himself who has a preliminary knowledge.
Anyways best of Luck for your efforts !


Title: Re: I am creating a primedice calculator.
Post by: BTCBinary on July 23, 2015, 01:39:33 AM
That's a nice product and I believe you should distribute it for free!
You will surely get some donations in doing so...


Title: Re: I am creating a primedice calculator.
Post by: cryptworld on July 23, 2015, 01:59:49 AM
It's really cool  ;)

Did you have into account the house edge?


Title: Re: I am creating a primedice calculator.
Post by: christopherkal on July 23, 2015, 03:08:20 AM
It's really cool  ;)

Did you have into account the house edge?

Not right now i'll have to see how i'll be able to account for the edge


Title: Re: I am creating a primedice calculator.
Post by: pooya87 on July 23, 2015, 03:40:51 AM
Hello , i am currently developing a tool to use with primedice that will (Hopefully) calculate a lot of things such as EV etc , i understand primedice's EV is always negative due to the 0.5% edge but i'll do my best.


This is it right now:
[i mg]https://i.imgur.com/c3FHIli.png[/img]

What more would you like to see?
Should i sell it eventually or distribute it free?

The program is developed using Python but i will port it to C# later for easy use.

Thanks :)

very nice effort, i would very much like to see the code of your project if it is in c# , i am always interested in programming projects

p.s. i don't think you can sell the project since there is nothing special about it yet, and also i think PrimeDice's house edge is 1% not 0.5% check their website faq to make sure.


Title: Re: I am creating a primedice calculator.
Post by: grendel25 on July 23, 2015, 03:55:08 AM
Hello , i am currently developing a tool to use with primedice that will (Hopefully) calculate a lot of things such as EV etc , i understand primedice's EV is always negative due to the 0.5% edge but i'll do my best.


This is it right now:
https://i.imgur.com/c3FHIli.png

What more would you like to see?
Should i sell it eventually or distribute it free?

The program is developed using Python but i will port it to C# later for easy use.

Thanks :)

Thank you for your efforts.  I'm very interested to give it a try whenever you can share it.  Things that I think would be helfpul:

1.  Unlimited values or very high values for variables such as bankroll, bet size, and amount of bets.  For amount of bets I'd like to go as high as 100,000,000 (100M)
2.  If it's ever possible... lots of flexibility and maybe also templates of various gambling strats like Fibonacci, D'Alambert, and Labouchere.
3.  Some way to enter preconfigured lists.. basically flexibility to incorporate any setting you could make in Seuntjie's bot.

Maybe this could be an addon to seuntjie's bot?


Title: Re: I am creating a primedice calculator.
Post by: christopherkal on July 23, 2015, 03:58:56 AM
Hello , i am currently developing a tool to use with primedice that will (Hopefully) calculate a lot of things such as EV etc , i understand primedice's EV is always negative due to the 0.5% edge but i'll do my best.


This is it right now:
https://i.imgur.com/c3FHIli.png

What more would you like to see?
Should i sell it eventually or distribute it free?

The program is developed using Python but i will port it to C# later for easy use.

Thanks :)

Thank you for your efforts.  I'm very interested to give it a try whenever you can share it.  Things that I think would be helfpul:

1.  Unlimited values or very high values for variables such as bankroll, bet size, and amount of bets.  For amount of bets I'd like to go as high as 100,000,000 (100M)
2.  If it's ever possible... lots of flexibility and maybe also templates of various gambling strats like Fibonacci, D'Alambert, and Labouchere.
3.  Some way to enter preconfigured lists.. basically flexibility to incorporate any setting you could make in Seuntjie's bot.

Maybe this could be an addon to seuntjie's bot?


I haven't heard about the bot you are talking about , if u could give me more info i could look into it :)


Title: Re: I am creating a primedice calculator.
Post by: Damiantroll on July 23, 2015, 06:14:39 AM
the calculator coding was easy, better you give people for free.
if you still want to sell it.
sell it below $1


Title: Re: I am creating a primedice calculator.
Post by: FanEagle on July 23, 2015, 06:34:24 AM
Offer this one for free, so I can study some of your code ::)
It's long time I don't program in python, you would bring me so many memories... :D


Title: Re: I am creating a primedice calculator.
Post by: PenguinFire on July 23, 2015, 07:01:19 AM
first off, primedice's edge is 1%, and theres not really any point to selling this, as this isnt that hard to code (could probably be done in under an hour with basic knowledge), and tools like this already exist. if someone could link said dice calculator tools here that'd be great.

This.  With this calculator how low do you expect to lower the max one percent house edge at Primedice?  Also, I do not understand how this is even possible.


Title: Re: I am creating a primedice calculator.
Post by: plost24 on July 23, 2015, 08:23:07 AM
i think you should give it for free a beta version to make people test it then you can buy the best version ;)


Title: Re: I am creating a primedice calculator.
Post by: iram91445 on July 23, 2015, 08:31:26 AM
if i were you i would sell it at the very start because people who get it for free will start to recreating it, updating and giving away for free and you will be left without any money for your fwork


Title: Re: I am creating a primedice calculator.
Post by: Coef on July 23, 2015, 08:45:08 AM
What more would you like to see?

1. Make the house edge % adjustable, so the calculator will work not only for PD but any site with a fixed house edge.
2. Calculation of the chance of having a m-loss-streak within n bets, so the user can understand how likely they are going to get, say 10 losses in a row within 1000 bets.


Title: Re: I am creating a primedice calculator.
Post by: Enzyme on July 23, 2015, 09:45:46 AM
Thanks for this, it is definitely a valuable tool. I've always wanted a calculator to find the chance of losing a bet x times in a row.


Title: Re: I am creating a primedice calculator.
Post by: lexuz on July 23, 2015, 09:46:26 AM
Hello , i am currently developing a tool to use with primedice that will (Hopefully) calculate a lot of things such as EV etc , i understand primedice's EV is always negative due to the 0.5% edge but i'll do my best.


This is it right now:
https://i.imgur.com/c3FHIli.png

What more would you like to see?
Should i sell it eventually or distribute it free?

The program is developed using Python but i will port it to C# later for easy use.

Thanks :)

Nice program maybe you want to share this for free. That's would be nice because this is just calculator right ;)


Title: Re: I am creating a primedice calculator.
Post by: euripide on July 23, 2015, 09:55:32 AM
You can add to forum for free download and insert a tip address  ;D


Title: Re: I am creating a primedice calculator.
Post by: Dennis7777 on July 23, 2015, 10:38:41 AM
From my own observation, it is very hard for you to sell this type of software. So it is better to include a tip address and make the program open source and let people use it and modify it freely.


Title: Re: I am creating a primedice calculator.
Post by: christopherkal on July 23, 2015, 11:07:09 AM
Gonna update original post with a link with the current progress !


Title: Re: I am creating a primedice calculator.
Post by: maku on July 23, 2015, 11:19:12 AM
Thanks for this, it is definitely a valuable tool. I've always wanted a calculator to find the chance of losing a bet x times in a row.
But you realize that if you are counting probability of something then exact numbers of wins and loses are not gonna be possible to find?
Thats is why it is called probability. You could assume, if calculator which can show you how much you will win existed Dice would not be called gambling anymore.


Title: Re: I am creating a primedice calculator.
Post by: christopherkal on July 23, 2015, 11:26:50 AM
If there was no house edge , over a large amount of plays you would eventually break even mathematically speaking


Title: Re: I am creating a primedice calculator.
Post by: srgkrgkj on July 23, 2015, 11:39:56 AM
Thanks for putting g I. The time to create the program this is good for all dice sites in general I think as many have the same house edges etc. I'll probably try out the program later too  :)


Title: Re: I am creating a primedice calculator.
Post by: christopherkal on July 23, 2015, 12:43:08 PM
Thanks for putting g I. The time to create the program this is good for all dice sites in general I think as many have the same house edges etc. I'll probably try out the program later too  :)

I'll try to make it as universal as possible :)


Title: Re: I am creating a primedice calculator.
Post by: FanEagle on July 23, 2015, 01:07:45 PM
Python source code pls? would be good :D


Title: Re: I am creating a primedice calculator.
Post by: christopherkal on July 23, 2015, 01:09:43 PM
Python source code pls? would be good :D

chance = float(raw_input("Input the Chance of Losing 0-100% "))  / 100
tries = int(raw_input("Input tries "))
btc = float(raw_input("Input Amount of Bitcoins you wish to gamble "))
house_edge = float(raw_input("Input the House edge 0-100% "))  / 100
chance += house_edge

def primedicecalculator(chance,tries,btc):
    EV = pow(chance,tries)
    total = 0.0
    for x in range(0,tries):
        lost = btc * 2
        total += float(lost)
    print "The chance of a %d losing streak is %f%%" % (tries,EV * 100)
    print "That means %f in 100 tries or %f in 1000 tries" % (EV * 100,EV * 1000)
    print "[MartinGale]Amount of BTC that has to be gambled to win back from the loss spree %f " % (total)

primedicecalculator(chance,tries,btc)





Title: Re: I am creating a primedice calculator.
Post by: FanEagle on July 23, 2015, 01:13:41 PM
Thank you very much, so many memories... ::)


Title: Re: I am creating a primedice calculator.
Post by: fox19891989 on July 23, 2015, 01:18:53 PM
0.5% house edge? I think u are talking about safedice??  In PD, the house edge is 1%, i am sure.

You program is awesome, it helps us, thanks for your calculator, and good luck to those who use it and play in PD.


Title: Re: I am creating a primedice calculator.
Post by: christopherkal on July 23, 2015, 01:22:37 PM
0.5% house edge? I think u are talking about safedice??  In PD, the house edge is 1%, i am sure.

You program is awesome, it helps us, thanks for your calculator, and good luck to those who use it and play in PD.

Thanks your kind words keep me going :) i will try to improve it as much as i can


Title: Re: I am creating a primedice calculator.
Post by: cryptworld on July 23, 2015, 01:24:42 PM
It's really cool  ;)

Did you have into account the house edge?

Not right now i'll have to see how i'll be able to account for the edge

it seems you finally can input the house edge to make it available for all dices

Nice  :D


Title: Re: I am creating a primedice calculator.
Post by: BitcoinGB1106 on July 23, 2015, 01:25:56 PM
Hope you can find something that works man! I've been playing around on PD for a while, and I've tried many different methods. Nothing works well yet. Have found some luck on 99x. Hits more than you think, also like doing 9x over til 21 red, then switching to under.

Good luck!


Title: Re: I am creating a primedice calculator.
Post by: talkbitcoin on July 23, 2015, 01:30:37 PM
cool open source calculator . keep up the good work


Title: Re: I am creating a primedice calculator.
Post by: christopherkal on July 23, 2015, 03:04:58 PM
cool open source calculator . keep up the good work

Just put up a new minor update with icon.

Tonight i will work on finding consecutive chances

for example

30% chance =

1st win: 30%
2nd win: 9%
3rd win: 2.7%


Title: Re: I am creating a primedice calculator.
Post by: pooya87 on July 23, 2015, 04:27:19 PM
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  ::)
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());


Title: Re: I am creating a primedice calculator.
Post by: bitbaby on July 23, 2015, 04:50:10 PM
Is it possible to make a web version of it , something which doesn't involves downloading? Or its not possible to do that?

I think you'll be able to put it on a free domain/server and it will come in real handy. And you might be able to make some money off it by putting some ads on the page.


Title: Re: I am creating a primedice calculator.
Post by: FanEagle on July 23, 2015, 05:08:15 PM
Is it possible to make a web version of it , something which doesn't involves downloading? Or its not possible to do that?

I think you'll be able to put it on a free domain/server and it will come in real handy. And you might be able to make some money off it by putting some ads on the page.
BitBaby: there is even the python scrypt you can compile by yourself ;)


Title: Re: I am creating a primedice calculator.
Post by: bitbaby on July 23, 2015, 05:10:46 PM
Is it possible to make a web version of it , something which doesn't involves downloading? Or its not possible to do that?

I think you'll be able to put it on a free domain/server and it will come in real handy. And you might be able to make some money off it by putting some ads on the page.
BitBaby: there is even the python scrypt you can compile by yourself ;)

Assuming.. one knows how to.  ;)


Title: Re: I am creating a primedice calculator.
Post by: FanEagle on July 23, 2015, 05:22:50 PM
Download python, save that script in notepad as calculator.py and then execute it.. :P
lemme test if I said everything it's ok.
nope, the py script gives me error.


Title: Re: I am creating a primedice calculator.
Post by: christopherkal on July 23, 2015, 06:30:06 PM
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  ::)
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 :)


Title: Re: I am creating a primedice calculator.
Post by: PenguinFire on July 23, 2015, 06:37:05 PM
Yeah, I would never pay for such a calculator unless I got to try it for five or ten minutes before.  Software trials are a standard now.


Title: Re: I am creating a primedice calculator.
Post by: Pierre11 on July 23, 2015, 07:05:46 PM
This user is a retard


Title: Re: I am creating a primedice calculator.
Post by: MICRO on July 23, 2015, 07:07:41 PM
If this at any point requires your primedice credentials , BE VERY CAREFULL !


Title: Re: I am creating a primedice calculator.
Post by: christopherkal on July 23, 2015, 07:16:50 PM
If this at any point requires your primedice credentials , BE VERY CAREFULL !

It won't , i'm looking to keep it as simple as possible and maybe let it be usable with other casinos.
It will always be open source


Title: Re: I am creating a primedice calculator.
Post by: subSTRATA on July 23, 2015, 07:24:32 PM
If this at any point requires your primedice credentials , BE VERY CAREFULL !

It won't , i'm looking to keep it as simple as possible and maybe let it be usable with other casinos.
It will always be open source

i dont see why it shouldnt be usable with other casinos already; you already have an input for the house edge in case another casino's edge is different, and youre not making a bot so no need to implement api access for every site. its just a simple calculator for martingale to prepare for the worse-case scenario.


Title: Re: I am creating a primedice calculator.
Post by: christopherkal on July 23, 2015, 07:27:55 PM
If this at any point requires your primedice credentials , BE VERY CAREFULL !

It won't , i'm looking to keep it as simple as possible and maybe let it be usable with other casinos.
It will always be open source

i dont see why it shouldnt be usable with other casinos already; you already have an input for the house edge in case another casino's edge is different, and youre not making a bot so no need to implement api access for every site. its just a simple calculator for martingale to prepare for the worse-case scenario.


I will also update it tonight with % of consecutive wins in certain amount of tries


Title: Re: Primedice Calculator !
Post by: Somekindabitcoin on July 23, 2015, 07:36:45 PM
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.


Title: Re: Primedice Calculator !
Post by: subSTRATA on July 23, 2015, 07:41:17 PM
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.


Title: Re: [FREE]Primedice Calculator ~ Calculate your odds ~ Level up your game !
Post by: katerniko1 on July 23, 2015, 07:47:11 PM
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


Title: Re: [FREE]Primedice Calculator ~ Calculate your odds ~ Level up your game !
Post by: Somekindabitcoin on July 23, 2015, 07:48:22 PM
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?


Title: Re: [FREE]Primedice Calculator ~ Calculate your odds ~ Level up your game !
Post by: christopherkal on July 23, 2015, 07:50:19 PM
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


Title: Re: [FREE]Primedice Calculator ~ Calculate your odds ~ Level up your game !
Post by: MICRO on July 23, 2015, 08:07:23 PM
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.


Title: Re: [FREE]Primedice Calculator ~ Calculate your odds ~ Level up your game !
Post by: christopherkal on July 23, 2015, 08:38:20 PM
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 :)


Title: Re: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game !
Post by: pooya87 on July 24, 2015, 03:03:34 AM
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  ::)
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 :)

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 ::)


Title: Re: [FREE]Primedice Calculator ~ Calculate your odds ~ Level up your game !
Post by: subSTRATA on July 24, 2015, 03:18:31 AM
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.


Title: Re: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game !
Post by: tsoPANos on July 24, 2015, 08:21:08 AM
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.


Title: Re: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game !
Post by: cazkooo on July 24, 2015, 08:25:42 AM
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


Title: Re: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game !
Post by: SyGambler on July 24, 2015, 01:10:09 PM
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


Title: Re: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game !
Post by: christopherkal on July 24, 2015, 02:33:18 PM
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?


Title: Re: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game !
Post by: subSTRATA on July 24, 2015, 02:35:41 PM
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.


Title: Re: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game !
Post by: christopherkal on July 24, 2015, 05:11:56 PM
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


Title: Re: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game !
Post by: adaseb on July 24, 2015, 11:09:41 PM
This is nice. Its pretty much like the Satoshi Dice simulator i've been using for years.

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


Title: Re: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game !
Post by: Pony789 on July 25, 2015, 02:09:00 AM
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.


Title: Re: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game !
Post by: christopherkal on July 25, 2015, 04:29:21 AM
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 :)


Title: Re: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game !
Post by: christopherkal on July 25, 2015, 05:36:36 PM
I'll be releasing an update later tonight :)


Title: Re: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game !
Post by: BTCLender on July 28, 2015, 04:58:49 AM
Thanks!!! :D


Title: Re: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game !
Post by: Jankkari on August 08, 2015, 07:34:03 PM
Dont use it!
https://i.gyazo.com/401a63be44b314e721eb46b2e2b48458.png


Title: Re: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game !
Post by: adaseb on August 08, 2015, 07:54:33 PM
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 :)

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.


Title: Re: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game !
Post by: dany1980 on May 01, 2021, 06:48:49 AM
Hi,

you can try with this one,
https://www.bitso.me/hi-lo-calc.php (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.


Title: Re: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game !
Post by: NotATether on May 01, 2021, 01:34:13 PM
Hi,

you can try with this one,
https://www.bitso.me/hi-lo-calc.php (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.