Advertisement
coinwalk

try this with 100k sat

Jan 24th, 2019
585
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. -- 8.91% Chance Strategy
  2.  
  3. chance = 8.91 -->> 8.91% Win Chance
  4. betfactor=0.000025
  5. base=balance*betfactor -->> 50 Sats BB at 0.01 BTC Bankroll, Auto Adjust to Increasing Bankroll
  6. prebet = 0.00000001
  7. multiplier=1.1111 -- >> 11.11% Increase on Lose
  8.  
  9. target=60000.00100000 -- <<Stop at this Profit Target>>
  10.  
  11. nextbet = prebet
  12. losecount = 0
  13. betcount = 0
  14. bethigh=false
  15. wincount=0
  16. highloss=0
  17. totalloss=0
  18. total=0
  19. avehit=0
  20. counter=0
  21. b=0
  22.  
  23. low=0
  24. high=0
  25.  
  26. --resetstats()
  27. resetseed()
  28.  
  29. function dobet()
  30.  
  31. if (lastBet.roll < chance) then
  32. low += 1
  33. end
  34.  
  35. if (lastBet.roll > (100 - chance)) then
  36. high += 1
  37. end
  38.  
  39. print(" ")
  40. print("Total Bet : "..betcount)
  41. print("Current Streak Loss : "..losecount)
  42. print("Highest Loss Streak : "..highloss)
  43. print("Number of Wins : "..wincount)
  44. print("Average Losses Before Win : "..string.format("%.2f",avehit))
  45. print("Profit :"..string.format("%.8f",profit))
  46. print(" ")
  47. print("Bet Amount :"..string.format("%.8f",nextbet))
  48. print("Current Balance : "..string.format("%.8f",balance))
  49. print("High :"..high.." / ".."Low :"..low)
  50. print(" ")
  51.  
  52. if counter > 500 then
  53. resetseed()
  54. low=0
  55. high=0
  56. counter=0
  57. else
  58. counter+=1
  59. end
  60.  
  61. if win then
  62. base=balance*betfactor
  63. nextbet = prebet
  64. wincount+=1
  65. total+=1
  66. totalloss+=losecount
  67. avehit=totalloss/total
  68. losecount = 0
  69. betcount += 1
  70. b+=1
  71.  
  72. if b>1 then
  73. bethigh=!bethigh
  74. b=0
  75. end
  76.  
  77. if profit>target then
  78. stop()
  79. print("TARGET REACHED!")
  80. end
  81.  
  82. else
  83.  
  84. losecount += 1
  85. betcount += 1
  86. nextbet = prebet
  87.  
  88. end
  89.  
  90. if losecount > highloss then
  91. highloss = losecount
  92. end
  93.  
  94. if (losecount > 9) then
  95. nextbet = 0.00000002
  96. end
  97.  
  98. if (losecount > 13) then
  99. nextbet = balance*betfactor
  100. if nextbet<0.00000005 then
  101. nextbet=0.00000005
  102. end
  103. end
  104.  
  105. if (losecount > 14) then
  106. nextbet = previousbet*multiplier
  107. end
  108. end
  109. end
  110. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement