Advertisement
coinwalk

snow party

Jan 9th, 2022
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. -- snow party jan09
  2.  
  3. resetstats()
  4. resetseed()
  5. nextbet=1e-8
  6. minbet=1e-8
  7.  
  8. dib=5e4
  9. ebe=balance/dib
  10. b=ebe
  11. oldbal=balance
  12. oldt=balance
  13. old=balance
  14. f=true
  15. chance=49.5
  16. target=balance*2
  17. nextbet=ebe
  18. bethigh=false
  19.  
  20. athb=balance
  21. ath=0;
  22. percent=true;
  23.  
  24. function trailingStop(val)
  25. if (balance>ath) then
  26. ath=balance
  27. end
  28. if (percent) then
  29. if ((balance-nextbet)<=(ath-((ath*val)/100))) then
  30. return stop()
  31. end
  32. else
  33. if ((balance-nextbet)<=(ath-val)) then
  34. return stop()
  35. end
  36. end
  37. end;
  38.  
  39. function dobet()
  40.  
  41. if (balance>(oldt+(b*6))) then
  42. nextbet=previousbet*2
  43. b= nextbet
  44. oldt= balance
  45. end
  46. if balance<oldt then
  47. oldt=balance
  48. end
  49. if (balance<=(oldbal-(b*3))) then
  50. nextbet=previousbet*2
  51. b=nextbet
  52. f=false
  53. oldbal=balance
  54. end
  55. if (balance>oldbal) then
  56. oldbal=balance
  57. end
  58. if ((balance>=(old+(ebe*10))) or ((balance>=old) and (f==false))) then
  59. ebe=balance/dib
  60. nextbet=ebe
  61. b=ebe
  62. f=true
  63. oldt=balance
  64. oldbal=balance
  65. old=balance
  66. end
  67. if (balance>=target) then
  68. stop() ching()
  69. end
  70. trailingStop(10)
  71. --chance = math.floor((chance*100)+0.5)/100 --wolf
  72. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement