Advertisement
Guest User

Untitled

a guest
May 16th, 2018
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1.  
  2. DCA_keep_balance = 0
  3.  
  4.  
  5. DCA_keep_balance_percentage = 0
  6.  
  7.  
  8. DEFAULT_DCA_max_cost = 0
  9.  
  10.  
  11. DEFAULT_DCA_max_buy_times = 15
  12.  
  13.  
  14. DEFAULT_DCA_buy_trigger = -1
  15.  
  16.  
  17.  
  18. DEFAULT_DCA_buy_min_price_increase = 0
  19.  
  20.  
  21. DEFAULT_DCA_buy_max_price_increase = 0
  22.  
  23. DEFAULT_DCA_min_buy_volume = 80
  24.  
  25. DEFAULT_DCA_min_orderbook_volume_percentage = 100
  26.  
  27. DEFAULT_DCA_max_buy_spread = 3
  28.  
  29.  
  30. DEFAULT_DCA_rebuy_timeout = 15
  31.  
  32. DEFAULT_DCA_pending_order_wait_time = 0
  33.  
  34. DEFAULT_DCA_ignore_sell_only_mode = true
  35.  
  36.  
  37. DEFAULT_DCA_A_buy_strategy = EMASPREAD
  38. DEFAULT_DCA_A_buy_value = -0.1
  39. DEFAULT_DCA_A_buy_value_limit = -10
  40.  
  41. DEFAULT_DCA_B_buy_strategy = RSI
  42. DEFAULT_DCA_B_buy_value = 45
  43. DEFAULT_DCA_B_buy_value_limit = 0
  44.  
  45. #
  46. DEFAULT_DCA_trailing_buy = 0
  47.  
  48. DEFAULT_DCA_buy_percentage = 180
  49. #
  50. DEFAULT_DCA_buy_percentage_1 = 100
  51. DEFAULT_DCA_buy_percentage_2 = 120
  52. DEFAULT_DCA_buy_percentage_3 = 140
  53. DEFAULT_DCA_buy_percentage_4 = 160
  54. DEFAULT_DCA_buy_percentage_5 = 180
  55.  
  56. #
  57. #DEFAULT_DCA_B_buy_value = 30
  58. #DEFAULT_DCA_B_buy_value_limit = 0
  59.  
  60.  
  61. #
  62. #DCA_orderbook_profit_calculation = false
  63. DCA_orderbook_profit_calculation = true
  64.  
  65. # Sell the trading pair if profit reaches the set percentage regardless of all sell
  66. # strategies being true. Set to zero to disable this.
  67. #
  68. #DEFAULT_DCA_max_profit = 0
  69. DEFAULT_DCA_max_profit = 0
  70.  
  71. #
  72. # Are we at the top of the trade cycle?
  73. #
  74. DEFAULT_DCA_A_sell_strategy = GAIN
  75. DEFAULT_DCA_A_sell_value = 0.08
  76. #
  77. # What is the minimum profit we want to make on this trade?
  78. #
  79. DEFAULT_DCA_C_sell_strategy = MACD
  80. DEFAULT_DCA_C_sell_value = -0.000000001
  81. #
  82. # Have we confirmed we are at the peak of the Trade Cycle?
  83. #
  84. #
  85. # Trailing profit, set to zero to turn off trailing
  86. #
  87. DEFAULT_DCA_trailing_profit = 0
  88.  
  89.  
  90. DEFAULT_DCA_take_profit_wait_time = 15
  91. DEFAULT_DCA_take_profit_percentage = 5
  92. DEFAULT_DCA_take_profit_reset_percentage_move = 0.5
  93.  
  94. #
  95. # Stop loss triggers
  96. #
  97. DEFAULT_DCA_stop_loss_trigger = 0
  98. DEFAULT_DCA_stop_loss_timeout = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement