Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- snow party jan09
- resetstats()
- resetseed()
- nextbet=1e-8
- minbet=1e-8
- dib=5e4
- ebe=balance/dib
- b=ebe
- oldbal=balance
- oldt=balance
- old=balance
- f=true
- chance=49.5
- target=balance*2
- nextbet=ebe
- bethigh=false
- athb=balance
- ath=0;
- percent=true;
- function trailingStop(val)
- if (balance>ath) then
- ath=balance
- end
- if (percent) then
- if ((balance-nextbet)<=(ath-((ath*val)/100))) then
- return stop()
- end
- else
- if ((balance-nextbet)<=(ath-val)) then
- return stop()
- end
- end
- end;
- function dobet()
- if (balance>(oldt+(b*6))) then
- nextbet=previousbet*2
- b= nextbet
- oldt= balance
- end
- if balance<oldt then
- oldt=balance
- end
- if (balance<=(oldbal-(b*3))) then
- nextbet=previousbet*2
- b=nextbet
- f=false
- oldbal=balance
- end
- if (balance>oldbal) then
- oldbal=balance
- end
- if ((balance>=(old+(ebe*10))) or ((balance>=old) and (f==false))) then
- ebe=balance/dib
- nextbet=ebe
- b=ebe
- f=true
- oldt=balance
- oldbal=balance
- old=balance
- end
- if (balance>=target) then
- stop() ching()
- end
- trailingStop(10)
- --chance = math.floor((chance*100)+0.5)/100 --wolf
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement