Bitcoin Forum
May 10, 2024, 10:33:56 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 3 4 »  All
  Print  
Author Topic: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game !  (Read 3771 times)
christopherkal (OP)
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
July 23, 2015, 12:10:27 AM
Last edit: August 08, 2015, 08:28:09 PM by christopherkal
 #1

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 Smiley



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 Smiley
1715337236
Hero Member
*
Offline Offline

Posts: 1715337236

View Profile Personal Message (Offline)

Ignore
1715337236
Reply with quote  #2

1715337236
Report to moderator
1715337236
Hero Member
*
Offline Offline

Posts: 1715337236

View Profile Personal Message (Offline)

Ignore
1715337236
Reply with quote  #2

1715337236
Report to moderator
1715337236
Hero Member
*
Offline Offline

Posts: 1715337236

View Profile Personal Message (Offline)

Ignore
1715337236
Reply with quote  #2

1715337236
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715337236
Hero Member
*
Offline Offline

Posts: 1715337236

View Profile Personal Message (Offline)

Ignore
1715337236
Reply with quote  #2

1715337236
Report to moderator
1715337236
Hero Member
*
Offline Offline

Posts: 1715337236

View Profile Personal Message (Offline)

Ignore
1715337236
Reply with quote  #2

1715337236
Report to moderator
subSTRATA
Legendary
*
Offline Offline

Activity: 1288
Merit: 1043


:^)


View Profile
July 23, 2015, 12:14:39 AM
 #2

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.

theres nothing here. message me if you want to put something here.
christopherkal (OP)
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
July 23, 2015, 12:27:14 AM
 #3

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 Smiley
subSTRATA
Legendary
*
Offline Offline

Activity: 1288
Merit: 1043


:^)


View Profile
July 23, 2015, 12:33:55 AM
 #4

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 Smiley
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.

theres nothing here. message me if you want to put something here.
everaja
Hero Member
*****
Offline Offline

Activity: 490
Merit: 500


~ScapeGoat~


View Profile
July 23, 2015, 12:43:43 AM
 #5


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 !

BTCBinary
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500


View Profile
July 23, 2015, 01:39:33 AM
 #6

That's a nice product and I believe you should distribute it for free!
You will surely get some donations in doing so...
cryptworld
Hero Member
*****
Offline Offline

Activity: 714
Merit: 503



View Profile
July 23, 2015, 01:59:49 AM
 #7

It's really cool  Wink

Did you have into account the house edge?
christopherkal (OP)
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
July 23, 2015, 03:08:20 AM
 #8

It's really cool  Wink

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
pooya87
Legendary
*
Offline Offline

Activity: 3444
Merit: 10558



View Profile
July 23, 2015, 03:40:51 AM
 #9

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 Smiley

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.

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
grendel25
Legendary
*
Offline Offline

Activity: 2282
Merit: 1031



View Profile
July 23, 2015, 03:55:08 AM
 #10

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:


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 Smiley

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?

..EPICENTRAL .....
..EPIC: Epic Private Internet Cash..
.
.
▄▄█████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄████████████████▀▀█████▄
▄████████████▀▀▀    ██████▄
████████▀▀▀   ▄▀   ████████
█████▄     ▄█▀     ████████
████████▄ █▀      █████████
▀████████▌▐       ████████▀
▀████████ ▄██▄  ████████▀
▀█████████████▄███████▀
▀█████████████████▀
▀▀█████████▀▀
.
▄▄█████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄████████▀█████▀████████▄
▄██████▀  ▀     ▀  ▀██████▄
██████▌             ▐██████
██████    ██   ██    ██████
█████▌    ▀▀   ▀▀    ▐█████
▀█████▄  ▄▄     ▄▄  ▄█████▀
▀██████▄▄███████▄▄██████▀
▀█████████████████████▀
▀█████████████████▀
▀▀█████████▀▀
.
.
[/center]
christopherkal (OP)
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
July 23, 2015, 03:58:56 AM
 #11

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 Smiley

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 Smiley
Damiantroll
Full Member
***
Offline Offline

Activity: 147
Merit: 100



View Profile
July 23, 2015, 06:14:39 AM
 #12

the calculator coding was easy, better you give people for free.
if you still want to sell it.
sell it below $1

FanEagle
Legendary
*
Offline Offline

Activity: 2856
Merit: 1114


Leading Crypto Sports Betting & Casino Platform


View Profile
July 23, 2015, 06:34:24 AM
 #13

Offer this one for free, so I can study some of your code Roll Eyes
It's long time I don't program in python, you would bring me so many memories... Cheesy

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
PenguinFire
Full Member
***
Offline Offline

Activity: 154
Merit: 100


That Darn Cat


View Profile
July 23, 2015, 07:01:19 AM
 #14

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.

plost24
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


View Profile
July 23, 2015, 08:23:07 AM
 #15

i think you should give it for free a beta version to make people test it then you can buy the best version Wink

For rent 1.4 Bitcoin for 11 months starting Feb 1 2017
iram91445
Full Member
***
Offline Offline

Activity: 238
Merit: 100

★YoBit.Net★ 200+ Coins Exchange & Dice


View Profile
July 23, 2015, 08:31:26 AM
 #16

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

Coef
Hero Member
*****
Offline Offline

Activity: 882
Merit: 1000


Exhausted


View Profile
July 23, 2015, 08:45:08 AM
 #17

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.

Enzyme
Sr. Member
****
Offline Offline

Activity: 420
Merit: 250


View Profile
July 23, 2015, 09:45:46 AM
 #18

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.
lexuz
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500

Me, myself and I


View Profile
July 23, 2015, 09:46:26 AM
 #19

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:


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 Smiley

Nice program maybe you want to share this for free. That's would be nice because this is just calculator right Wink
euripide
Hero Member
*****
Offline Offline

Activity: 634
Merit: 500



View Profile
July 23, 2015, 09:55:32 AM
 #20

You can add to forum for free download and insert a tip address  Grin

Pages: [1] 2 3 4 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!