Guest User

Untitled

a guest
Apr 26th, 2013
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.06 KB | None | 0 0
  1. # watch the following markets
  2. # ["MtGoxEUR", "BitcoinCentralEUR", "IntersangoEUR", "Bitcoin24EUR",
  3. # "BitstampEUR", "BtceUSD", "MtGoxUSD", "BitfloorUSD", "BitstampUSD"]
  4. markets = ["MtGoxEUR", "Bitcoin24EUR",
  5.            "BitstampEUR"]  # BitfloorUSD (closed)
  6.  
  7. # observers if any
  8. # ["Logger", "TraderBot", "TraderBotSim", "HistoryDumper", "Emailer"]
  9. observers = ["TraderBotSim"]
  10.  
  11. market_expiration_time = 120  # in seconds: 2 minutes
  12.  
  13. #### Trader Bot Config
  14. # Access to Private APIs
  15. mtgox_key = "FIXME"
  16. mtgox_secret = "FIXME"
  17.  
  18. bitcoincentral_username = "FIXME"
  19. bitcoincentral_password = "FIXME"
  20. bitcoincentral_address = "FIXME"  # to deposit btc from markets / wallets
  21.  
  22. # SafeGuards
  23. max_tx_volume = 300  # in BTC
  24. min_tx_volume = 1  # in BTC
  25. balance_margin = 0.1  # 5%
  26. profit_thresh = 1  # in EUR
  27. perc_thresh = 2  # in %
  28.  
  29. #### Emailer Observer Config
  30. smtp_host = 'FIXME'
  31. smtp_login = 'FIXME'
  32. smtp_passwd = 'FIXME'
  33. smtp_from = 'FIXME'
  34. smtp_to = 'FIXME'
  35.  
  36. #### XMPP Observer
  37. xmpp_jid = "[email protected]"
  38. xmpp_password = "FIXME"
  39. xmpp_to = "[email protected]"
Advertisement
Add Comment
Please, Sign In to add comment