This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const DEBUG = !0 | |
const BET_BALANCE = 0.03 // max bankroll available to bet with | |
const MAX_CUT_OFF = 1.5 | |
const MIN_CUT_OFF = 1.08 | |
const BET_SPEED = 300 | |
const iskips = 20 | |
const hmrsv = 3 | |
let prevresults = []; | |
let previous_losses = []; | |
let loseStreak = 0; |