Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # watch the following markets
- # ["MtGoxEUR", "BitcoinCentralEUR", "IntersangoEUR", "Bitcoin24EUR",
- # "BitstampEUR", "BtceUSD", "MtGoxUSD", "BitfloorUSD", "BitstampUSD"]
- markets = ["MtGoxEUR", "Bitcoin24EUR",
- "BitstampEUR"] # BitfloorUSD (closed)
- # observers if any
- # ["Logger", "TraderBot", "TraderBotSim", "HistoryDumper", "Emailer"]
- observers = ["TraderBotSim"]
- market_expiration_time = 120 # in seconds: 2 minutes
- #### Trader Bot Config
- # Access to Private APIs
- mtgox_key = "FIXME"
- mtgox_secret = "FIXME"
- bitcoincentral_username = "FIXME"
- bitcoincentral_password = "FIXME"
- bitcoincentral_address = "FIXME" # to deposit btc from markets / wallets
- # SafeGuards
- max_tx_volume = 300 # in BTC
- min_tx_volume = 1 # in BTC
- balance_margin = 0.1 # 5%
- profit_thresh = 1 # in EUR
- perc_thresh = 2 # in %
- #### Emailer Observer Config
- smtp_host = 'FIXME'
- smtp_login = 'FIXME'
- smtp_passwd = 'FIXME'
- smtp_from = 'FIXME'
- smtp_to = 'FIXME'
- #### XMPP Observer
- xmpp_jid = "[email protected]"
- xmpp_password = "FIXME"
- xmpp_to = "[email protected]"
Advertisement
Add Comment
Please, Sign In to add comment