not sure coz everytime i change my odds , it depends on the numbers that come out before I make a bet, but mostly I use 70% above
how many red streaks you can have using 70% chance??
using 70% chance good on risk:reward ratio? because what i know is martingale only wok on 47-50% chance its like coin flip..
If you give me "botable" values for a 70% win chance I can run a few simulations for you. I need values like below:
$prefix = "martingale22"
$numer_of_rolls_do_make = 10**9
$chance_to_win = 4950 # assumes lowest possible = 0000 and higest possible = 9999
$bankroll = 1*2**22 # how much satoshi do you start with
$basebet = 1 # in satoshi
$multiplier = 2 # if won
$increase_bet = 1.0 # percent to increase the bet, set 0 for flatbet; 1.0 for 100%
I typically run 10k simulations with up to 10
6 or 10
9 rolls each. Per simulation I store how many rolls have been made (number will be below the max if you bust), the overall profit (might still be positive in some cases even after a bust), number of rolls won, number of rolls lost, biggest streak (positive or negative number, depending on win/lost streak). The output is a .csv file.