Advertisement
Guest User

pairs

a guest
Oct 18th, 2017
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. #Define the market we are trading
  2. MARKET = BTC
  3. ALL_max_trading_pairs = 30
  4. ALL_trading_enabled = true
  5. ALL_buy_strategy = LOWBB
  6. ALL_buy_value = 25
  7. ALL_sell_strategy = GAIN
  8. ALL_sell_value = 1.0
  9. ALL_max_cost = 0.00055
  10. ALL_min_buy_volume = 150
  11. ALL_min_buy_balance = 0.4
  12. #Useful for BB strategy to not sell below profit margin
  13. ALL_min_profit = 1
  14. ALL_enabled_pairs= ALL
  15.  
  16. ALL_trailing_profit = 0.075
  17. ALL_trailing_buy = 0.25
  18. #Enable DCA for all pairs with a balance
  19. ALL_DCA_enabled = true
  20. ALL_panic_sell_enabled = false
  21.  
  22. ALL_sell_only_mode = false
  23.  
  24. #Turn on sell only mode if BTC price drops x% amount
  25. ALL_btc_price_drop_trigger = 0
  26. #Turn off sell only mode if BTC price goes back up to x% amount
  27. ALL_btc_price_drop_recover_trigger = 0
  28.  
  29. #Turn on sell only mode if BTC price rises x% amount
  30. ALL_btc_price_rise_trigger = 0
  31. #Turn off sell only mode if BTC price comes back down to x% amount
  32. ALL_btc_price_rise_recover_trigger = 0
  33.  
  34. #Turn on sell only mode if we got x consecutive buys and no sells in between
  35. ALL_consecutive_buy_trigger = 0
  36. #turn off sell only mode if we got x consecutive sells with no buys in between
  37. ALL_consecutive_sell_trigger = 0
  38.  
  39. #If x amount of time in minutes has passed since you bought a coin, create a pending order for that pair
  40. #This enabled the bot to buy this pair again without selling the old one
  41. ALL_pending_order_wait_time = 1440
  42.  
  43. #Cancel pending order for specified coin if avg profit reaches specified amount
  44. ALL_combined_cancel_pending_trigger = 0
  45.  
  46. All_stop_loss_trigger = 0
  47. #BTC-XVG_stop_loss_trigger = -0.50
  48.  
  49. #BTC_XRP_override_bought_price = 0.00008000
  50. #BTC_XRP_override_bought_date = 2017-01-01
  51.  
  52. #BTC_XRP_bought_price = 0.00004943
  53. #BTC_SYS_DCA_enabled = false
  54. #BTC_BCH_bought_price = 0.1
  55.  
  56. #BTC_SC_trading_enabled=false
  57. #BTC_SC_sell_value = 0.4
  58.  
  59. #BTC_SC_pending_order_wait_time = 180
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement