Hi chilly.
I have this (it's working):
chance=49.5
multiplier=1.05
multiplier2=0.95
base=0.00001000
nextbet = base
bethigh = false
target = .0001
function dobet()
if win then
nextbet=previousbet*multiplier2
else
nextbet=previousbet*multiplier
end
end
Now i want to add reset bets function, same like you have in your strategy (reset when target balance is met)
In other words i want to start with 1 btc, startbet(0.00001000) target(0.00000100) when i make my target i want to automatically reset bets and start over with new balance.
Can you help me with that?