Skip to content

Commit

Permalink
[Bot] Also market PEG.RANDOM
Browse files Browse the repository at this point in the history
  • Loading branch information
xeroc committed Jan 23, 2016
1 parent 904ac79 commit 4a3295a
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion scripts/exchange-bots/config-example.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
witness_user = ""
witness_password = ""

watch_markets = ["PEG.PARITY : TEST", "PEG.RANDOM : TEST"]
# watch_markets = ["PEG.PARITY : TEST"]
# watch_markets = ["PEG.RANDOM : TEST"]
watch_markets = ["PEG.RANDOM : TEST", "PEG.PARITY : TEST"]
market_separator = " : "

bots = {}
Expand Down Expand Up @@ -52,6 +54,22 @@
"symmetric_sides" : True,
}

bots["RandomWall"] = {"bot" : MakerSellBuyWalls,
"markets" : ["PEG.RANDOM : TEST"],
"target_price" : "feed",
"spread_percentage" : 5,
"volume_percentage" : 10,
"symmetric_sides" : True,
}
bots["RandoRamp"] = {"bot" : MakerRamp,
"markets" : ["PEG.RANDOM : TEST"],
"target_price" : "feed",
"spread_percentage" : 4,
"volume_percentage" : 30,
"ramp_price_percentage" : 4,
"ramp_step_percentage" : 0.5,
"ramp_mode" : "exponential"
}

account = "xeroc"
safe_mode = False

0 comments on commit 4a3295a

Please sign in to comment.