Advertisement
Baliarta

Sc Risk

Dec 18th, 2022 (edited)
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. ---=====================
  2.  
  3. --HIGH RISK--
  4.  
  5. ---=====================
  6.  
  7.  
  8.  
  9. bb = 1e-7
  10.  
  11. w1 = 1
  12.  
  13. w2 = 21
  14.  
  15. pc = 0
  16.  
  17. ip = 0.01385
  18.  
  19. ilos = 1.3183
  20.  
  21. iwin = 1.25
  22.  
  23. rs = 10
  24.  
  25. rl = 0
  26.  
  27. tlp = 100000
  28.  
  29. stoplose = 0
  30.  
  31. cutlsval = 0.5
  32.  
  33. cutloss = false
  34.  
  35. chancetemp = 0
  36.  
  37. l = 0
  38.  
  39. loss = 0
  40.  
  41. red = 0
  42.  
  43. winmax = 0
  44.  
  45. target = balance*1.5
  46.  
  47. resetseed()
  48.  
  49. resetstats()
  50.  
  51. resetchart()
  52.  
  53. nextbet = bb
  54.  
  55. chance = w1
  56.  
  57.  
  58.  
  59. function dobet()
  60.  
  61. if profit
  62. pb = previousbet
  63.  
  64. pf = profit
  65.  
  66. ch = {w1,w2}
  67.  
  68.  
  69.  
  70. if (rl == rs) then
  71.  
  72. rl = 0
  73.  
  74. resetseed();
  75.  
  76. resetpartialprofit()
  77.  
  78. else
  79.  
  80. rl = rl + 1
  81.  
  82. end
  83.  
  84.  
  85.  
  86. if win then
  87.  
  88. inmax = winmax +1
  89.  
  90. l = 0
  91.  
  92. loss = 0
  93.  
  94. red = 0
  95.  
  96. if (pf >= pc + ip) then
  97.  
  98. stoplose = balance - (balance * cutlsval)
  99.  
  100. pc = pf
  101.  
  102. nb = bb
  103.  
  104. chancetemp = 0
  105.  
  106. else
  107.  
  108. if chancetemp == 0 or chancetemp <= 30 then
  109.  
  110. chancetemp = w2
  111.  
  112. ch = {chancetemp,chancetemp}
  113.  
  114. else
  115.  
  116. chancetemp = chancetemp - rs
  117.  
  118. ch = {chancetemp,chancetemp}
  119.  
  120. end
  121.  
  122. nb = pb * iwin
  123.  
  124. end
  125.  
  126. else
  127.  
  128. l = l +1
  129.  
  130. loss = loss +1
  131.  
  132. red = red +1
  133.  
  134. winmax = 0
  135.  
  136. nb = pb * ilos
  137.  
  138. end
  139.  
  140.  
  141.  
  142. if (winmax >=2) or (red >= 1) then
  143.  
  144. bethigh = not bethigh
  145.  
  146. end
  147.  
  148.  
  149.  
  150. nextbet = nb
  151.  
  152.  
  153.  
  154. if balance >= tlp then stop() end
  155.  
  156. chance = math.random(ch[1]*100.0, ch[2]*100.0)/100.0
  157.  
  158.  
  159.  
  160. if cutloss then
  161.  
  162. if balance <= stoplose then stop() end
  163.  
  164. end
  165.  
  166. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement