KgBC / just-dice-bot

Hi, this is a flexible betting bot for just-dice.com. Feel free to use it under GPL. If you want to donate some Beer/Satoshis: 1CDjWb7zupTfQihc6sMeDvPmUHkfeMhC83 Thanks. The ACES branch is considered stable, use this if you don't want to develop and do not need latest features: https://github.com/KgBC/just-dice-bot/tree/aces
GNU General Public License v2.0
18 stars 6 forks source link

Graphing of bet history #23

Closed KgBC closed 10 years ago

KgBC commented 10 years ago

planned feature: graphing of bet history, using an sqlite3 db containing the bets and matplotlib

KgBC commented 10 years ago

Just to show you what I'm working on: Nice graph over ~25 minutes betting:

bets

Config is:

jdb_config = {
    "visible"    : 0,
    "user"       : "USER",
    "pass"       : "PASS",
    "lose_rounds": 3,
    "min_bet"    : 0.0000001,
    "multiplier" : [       11.0, 11.0, 'lose25'],   
    "chance"     : [ 90.0, ],
    "safe_perc"  : 25.0,
    "auto-tip"   : 1,
}
KgBC commented 10 years ago

graphing implemented. writing a picture :)