Somehow I was able to hammer out a decent script so the reward is I gonna share it for your improvement.

25% chance bitsler strategy (follow this thread for background:
https://bitcointalk.org/index.php?topic=1748508):
chance = 25
multiplier = 1.35
base = 0.00000002
nextbet = base
bethigh = false
rollcount = 7
function dobet()
--Randomly select High/Low
--bethigh = math.random(0,100)%2 == 0
--change seed every 7 bet
if rollcount == 7 then
rollcount = 0
resetseed();
else
rollcount = rollcount + 1
end
if (balance) < (nextbet) then
stop();
print(balance)
print("INSUFFICIENT FUNDS")
end
--bet progression
if win then
nextbet = base
else
nextbet = previousbet * multiplier
end
end
end
See this screenshot for script result:
http://imgur.com/a/mg2PEI lack the know-how for a controlled bet high/low coding. The script starts with betting low all the way (bethigh = false). I need it to switch to high after a 10-bet losing streak, then once it hits the first win, switch to low again.
There might be some losing streak coding floating in earlier posts of this thread or outside this forum. Just let me know and I try to learn whatever I can. If you have better ideas for bet high/low strategy, feel free to amend the script code as above. Another idea is to stop the script running after a 20-bet losing streak but I KIV this first and am more keen to test bet high/low.
Thanks for your help.