Advertisement
Guest User

Collective Signals DCA

a guest
May 22nd, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.32 KB | None | 0 0
  1. # THE COLLECTIVE STABLE COIN TEMPLATE
  2. # https://discord.gg/xp5CdxQ
  3. #
  4. # GENERAL SETTINGS
  5. #
  6. # DCA is a method for averaging down the price of a losing trade, hoping the price will come up to your lower average buy price. This is in dollars not BTC
  7. DEFAULT_DCA_max_cost = 2500
  8. # If not set (including missing from the file completely) then there is no limit and all coins can be DCA'd.
  9. # Define max amount of times DCA is allowed to buy a pair.
  10. DEFAULT_DCA_max_buy_times = 15
  11. # Only buy coins if the buy cost will not let your balance go below specified amount in %
  12. #
  13. # Set the maximum number of coins that are permitted to DCA at any given time.
  14. # Allow DCA to buy if there's enough volume in order book to fill the order.
  15. # DCA_max_trading_pairs = 3
  16. # Only place a buy order if there's enough volume in order book to fill the order.
  17. # The timeout period (in minutes) that the bot is not allowed to buy a coin after it was last DCA'ed.
  18. # Only buy coins if the buy cost will not let your balance go below specified amount
  19. DCA_keep_balance = 10
  20. # Set this value to true to allow DCA to continue buying even if no new buys are allowed as the bot is in Sell Only Mode.
  21. DCA_keep_balance_percentage = 25
  22. # If this difference is exceeded then the coin will not be bought.
  23. # BUY FILTER SETTINGS
  24. #
  25. # Set the loss percentage required before a DCA buy can take place.
  26. DEFAULT_DCA_min_buy_volume = 25
  27. #
  28. # Max spread % between lowest ask and highest bid to allow a new buy order.
  29. DEFAULT_DCA_max_buy_spread = 1.5
  30. # Once all buy strategies are true, the bot will make note of the current ask price and begin watching.
  31. DEFAULT_DCA_min_orderbook_volume_percentage = 25
  32. # Set the percentage of TCV purchased when making a DCA buy.
  33. DEFAULT_DCA_rebuy_timeout = 35
  34. # Purchase the same number of coins at each DCA level effectively doubling down.
  35. # Only purchase a pair if the 24 hour percentage change is above the min price increase.
  36. DEFAULT_DCA_buy_min_change_percentage = -7
  37. # Only purchase a pair if the 24 hour percentage change is below the max price increase.
  38. DEFAULT_DCA_buy_max_change_percentage = 7
  39. #
  40. DEFAULT_DCA_ignore_sell_only_mode = true
  41. #
  42. # Set the depth of the orderbook to look back and identify the largest sell order.
  43. DEFAULT_DCA_sell_wall_orderbook_depth = 100
  44. # Profits
  45. # Set the maximum difference allowed from the average order size within the DEFAULT_DCA_sell_wall_orderbook_depth.
  46. DEFAULT_DCA_sell_wall_diff_percentage = 5000
  47. #Stable to stable max profit
  48. #
  49. # BUY SETTINGS
  50. #
  51. #
  52. DEFAULT_DCA_A_buy_strategy_label = Collective
  53. DEFAULT_DCA_A_buy_strategy = SIGNAL
  54.  
  55. # If x amount of time in minutes has passed since you bought a coin, create a pending order for that pair
  56. # Cancel pending order for specified coin if avg profit reaches specified amount
  57. DEFAULT_DCA_buy_trigger = -0.25
  58.  
  59. # Choose to combine pending orders for the same coin into one item in the pending log or keep them as separate items.
  60. # Set the loss % required before a DCA buy can take place when SOM is on.
  61. # All configured buy strategies must be true and you must have lost at least this amount from your average bought price.
  62. SOM_DCA_buy_trigger = -6
  63. # Set the value that will trigger a stop loss order. If the value of a coin drops below the set percentage it will be automatically sold for a loss.
  64. # Trailing is turned off as we are in an upward trend
  65. #
  66. # The price needs to fall and then rise by at least the percentage specified in order for a buy to be attempted.
  67. DEFAULT_DCA_trailing_buy = 0.01
  68.  
  69. # Set the number of times you want to see the price fluctuate into and out of a good trail before making the buy.
  70. DEFAULT_DCA_trailing_buy_rebound_count = 0
  71.  
  72. DEFAULT_DCA_buy_percentage = 25
  73.  
  74. # Set the buy percentage to be used instead of DEFAULT_DCA_buy_percentage when sell only mode (SOM) is on
  75. SOM_DCA_buy_percentage = -6.75
  76.  
  77. # Sets the per trigger level percentage of TCV to purchase when making a DCA buy.
  78. DEFAULT_DCA_buy_percentage_1 = 45
  79. DEFAULT_DCA_buy_percentage_2 = 40
  80. DEFAULT_DCA_buy_percentage_3 = 35.3333333
  81. DEFAULT_DCA_buy_percentage_4 = 15.3333333
  82. DEFAULT_DCA_buy_percentage_5 = 12
  83. DEFAULT_DCA_buy_percentage_6 = 9
  84. DEFAULT_DCA_buy_percentage_7 = 8
  85. DEFAULT_DCA_buy_percentage_8 = 13.3333333
  86. DEFAULT_DCA_buy_percentage_9 = 12.3333333
  87. DEFAULT_DCA_buy_percentage_10 = 10.3333333
  88. DEFAULT_DCA_buy_percentage_11 = 5.3333333
  89. DEFAULT_DCA_buy_percentage_12 = 4.3333333
  90. DEFAULT_DCA_buy_percentage_13 = 3.3333333
  91. DEFAULT_DCA_buy_percentage_14 = 2.3333333
  92. DEFAULT_DCA_buy_percentage_15 = 1.3333333
  93.  
  94. #
  95. #COLLECTIVE SELL SETTINGS
  96. #
  97.  
  98. DEFAULT_DCA_A_sell_strategy = GAIN
  99. DEFAULT_DCA_A_sell_value = 0.88
  100.  
  101.  
  102. #Stable to stable sell strat
  103. PAX_DCA_A_sell_strategy = GAIN
  104. PAX_DCA_A_sell_value = 0.15
  105.  
  106. USDC_DCA_A_sell_strategy = GAIN
  107. USDC_DCA_A_sell_value = 0.15
  108.  
  109. TUSD_DCA_A_sell_strategy = GAIN
  110. TUSD_DCA_A_sell_value = 0.15
  111.  
  112.  
  113. # Trailing is turned off as we want the sell signal to be the instant the cross happens from uptrend to downtrend.
  114. # We use GAIN to force the trading pair through its cycle if the cross happens before the GAIN is reached.
  115.  
  116. DEFAULT_DCA_trailing_profit_type = DEFAULT
  117. DEFAULT_DCA_trailing_profit = 0.125
  118.  
  119.  
  120. #Stable to stable trailing
  121. PAX_DCA_trailing_profit_type = DEFAULT
  122. PAX_DCA_trailing_profit = 0.015
  123.  
  124. USDC_DCA_trailing_profit_type = DEFAULT
  125. USDC_DCA_trailing_profit = 0.015
  126.  
  127. TUSD_DCA_trailing_profit_type = DEFAULT
  128. TUSD_DCA_trailing_profit = 0.015
  129.  
  130. DEFAULT_DCA_trailing_profit_rebound_count = 0
  131.  
  132. #
  133. #
  134. # If set to true, Profit Trailer will look at the highest bid order with enough volume rather than just the highest bid order.
  135.  
  136. DCA_orderbook_profit_calculation = true
  137.  
  138. # Sell the trading pair if profit reaches the set percentage regardless of all sell strategies being true.
  139.  
  140. DEFAULT_DCA_max_profit = 18
  141.  
  142.  
  143.  
  144. PAX_DCA_max_profit = 2
  145. TUSD_DCA_max_profit = 2
  146. USDC_DCA_max_profit = 2
  147.  
  148. # The profit percentage above which the bot will attempt to sell a pair if it has not sold for xx minutes, defined on the line above this.
  149. DEFAULT_DCA_take_profit_percentage = 10
  150.  
  151. # The percentage of price deviation allowed from the DEFAULT_take_profit_percentage before resetting the DEFAULT_take_profit_wait_time.
  152. DEFAULT_DCA_take_profit_reset_percentage_move = 0.25
  153.  
  154. # The time period to wait define in minutes while the profit percentage remains above xx percent, defined on the line below this, but has not yet sold.
  155. DEFAULT_DCA_take_profit_wait_time = 10
  156. # Pending Orders
  157. #
  158. DEFAULT_DCA_pending_order_wait_time = 0
  159.  
  160. DEFAULT_DCA_combined_cancel_pending_trigger = 0
  161.  
  162. # If the price has dropped x% since we bought a coin and we have not sold it (and it's in the dca log),
  163. # create limit sell order for that pair at a price equivalent to your GAIN strategy sell_value.
  164. DEFAULT_DCA_pending_order_price_drop_trigger = 0
  165.  
  166. DEFAULT_DCA_combine_pending_orders = false
  167.  
  168. #
  169. # Stop loss triggers
  170. #
  171. DEFAULT_DCA_stop_loss_trigger = -8
  172.  
  173. # Set the amount of minutes that the bot is not allowed to buy a coin after it was sold by stop loss trigger.
  174. DEFAULT_DCA_stop_loss_timeout = 1440
  175.  
  176. # If set to true, Stoploss in DCA will behave the same as in pairs. once the set percentage is reached, the coin will sell as a stoploss.
  177. # If set to false, stoploss will not occur until DCA is complete.
  178. DCA_stop_before_complete = false
  179.  
  180. # Set to true to sell all of your coins in the DCA Log IMMEDIATELY for current market prices.
  181. DEFAULT_DCA_panic_sell_enabled = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement