Advertisement
Guest User

Collective Signals Pairs

a guest
May 22nd, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.43 KB | None | 0 0
  1. ######################################
  2. # THE COLLECTIVE STABLE COIN TEMPLATE
  3. # https://discord.gg/xp5CdxQ
  4. ######################################
  5.  
  6. ##################
  7. # GENERAL SETTINGS
  8. ##################
  9.  
  10. # Define the market we are trading (USDT, TUSD, PAX, or USDC)
  11. market = BTC
  12.  
  13. # This will enable trading for any pairs that you have defined
  14. enabled_pairs = ALL
  15.  
  16. # Define your starting balance from the exchange
  17. start_balance = 0.32757500
  18. BNB_bought_price = 0.0032190
  19.  
  20. # Only buy coins if the buy cost will not let your balance go below specified amount
  21. keep_balance = 0.0
  22.  
  23. # Only buy coins if the buy cost will not let your balance go below specified amount in %
  24. keep_balance_percentage = 25
  25.  
  26. # Enable trading (buying,selling and orders) using defined strategies for all pairs
  27. DEFAULT_trading_enabled = false
  28.  
  29. # This will hide any pairs that you have disabled
  30. hidden_pairs =
  31.  
  32. # Set the depth of the orderbook to look back and identify the largest sell order.
  33. # 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.
  34. DEFAULT_DCA_enabled = true
  35.  
  36. # If this difference is exceeded then the coin will not be bought.
  37. # Choose to combine pending orders for the same coin into one item in the pending log or keep them as separate items.
  38. DEFAULT_combine_pending_orders = false
  39.  
  40. ###################
  41. # POSSIBLE BUY LOG
  42. ###################
  43.  
  44. # Depth of the orderbook to look back and identify the largest sell order
  45. DEFAULT_sell_wall_orderbook_depth = 100
  46. # Set the maximum difference allowed from the average order size within the DEFAULT_sell_wall_orderbook_depth.
  47. DEFAULT_sell_wall_diff_percentage = 5000
  48.  
  49. # Adjust trading pairs based on trading budget, Keep in mind anything under 1-2 btc keep under 3 as a recommendation
  50. max_trading_pairs = 3
  51.  
  52. # Set the amount of the market currency (USDT, TUSD, USDC, USDS, or PAX) we will use to buy a pair. This amount is spent for EACH initial purchase.
  53. DEFAULT_initial_cost = 0
  54.  
  55. # An alternative to the fixed initial cost above, set the percentage of your TCV (Total Current Value) to be used for each initial purchase.
  56. DEFAULT_initial_cost_percentage = 7.5
  57.  
  58. # Only buy coins with a minimum volume of specified amount.
  59. DEFAULT_min_buy_volume = 500
  60.  
  61. # Cancel pending order for specified coin if avg profit reaches specified amount
  62. DEFAULT_min_buy_price = 0.000000600
  63.  
  64. # Max spread % between lowest ask and highest bid to allow a new buy order.
  65. DEFAULT_max_buy_spread = 1.5
  66.  
  67. # Allow initial buys if there is enough volume in order book to fill the order.
  68. DEFAULT_min_orderbook_volume_percentage = 50
  69.  
  70. # Protect against large market swings by turning on sell only mode.
  71. DEFAULT_rebuy_timeout = 30
  72. # Turn on sell only mode if the price rises by the set percentage.
  73. # Only purchase a pair if the 24 hour percentage change is above the min price increase.
  74. # Note: You may need to adjust this to suit market conditions, setting this to 0.01 will only pick positive pairs.
  75. DEFAULT_buy_min_change_percentage = -8
  76. DEFAULT_buy_max_change_percentage = 8
  77. #
  78. # coin_min_age is defined in days, it is used to allow the bot to trade only with coins which are older than x days,
  79. pair_min_listed_days = 30
  80. # above is appearing below or that pair wont trade.
  81. #
  82. # BUY SETTINGS
  83. DEFAULT_A_buy_strategy_label = Collective
  84. DEFAULT_A_buy_strategy = SIGNAL
  85. DEFAULT_trailing_buy = 0
  86.  
  87. #SELL STRATEGY
  88.  
  89. # What is the minimum profit we want to make on this trade?
  90.  
  91. DEFAULT_A_sell_strategy = GAIN
  92. DEFAULT_A_sell_value = 0.68
  93.  
  94. # Trailing is turned off as we want the sell signal to be the instant the cross happens from uptrend to downtrend.
  95. # We use GAIN to force the trading pair through its cycle if the cross happens before the GAIN is reached.
  96. #
  97. DEFAULT_trailing_profit_type = GROW
  98.  
  99. # Once all sell strategies are true, the bot will make note of the current bid price and begin watching.
  100. # The price needs to rise and then fall by at least the percentage specified in order for a sell to be attempted.
  101. DEFAULT_trailing_profit = 0.1125
  102.  
  103. DEFAULT_trailing_profit_rebound_count = 0
  104.  
  105. # If set to true, it will look at the highest bid order with enough volume rather than just the highest bid order.
  106. orderbook_profit_calculation = true
  107.  
  108. # This will sell a pair regardless of other settings if max profit is reached
  109. DEFAULT_max_profit = 14
  110.  
  111. DEFAULT_take_profit_wait_time = 4
  112.  
  113. # 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.
  114. DEFAULT_take_profit_percentage = 5
  115.  
  116. # The percentage of price deviation allowed from the DEFAULT_take_profit_percentage before resetting the DEFAULT_take_profit_wait_time.
  117. DEFAULT_take_profit_reset_percentage_move = 0.25
  118.  
  119. DEFAULT_pending_order_wait_time = 0
  120.  
  121. # If the price has dropped x% since we bought a coin and we have not sold it (and it's still in the pairs log),
  122. # create limit sell order for that pair at a price equivalent to your GAIN strategy sell_value.
  123. DEFAULT_pending_order_price_drop_trigger = 0
  124. DEFAULT_combined_cancel_pending_trigger = 0
  125.  
  126. #STOP LOSS Settings
  127. # Set the value that will trigger a stop loss order If the value of a coin drops below stop loss trigger, it will be automatically sold
  128. DEFAULT_stop_loss_trigger = -7
  129. DEFAULT_stop_loss_timeout = 1440
  130. # Set to true to sell all of your coins with a balance for current market prices
  131. DEFAULT_panic_sell_enabled = false
  132.  
  133. #
  134. #
  135.  
  136. # Manually enable Sell Only Mode (SOM) for all your coins. No more purchases will be made. The bot will continue to make sales.
  137. DEFAULT_sell_only_mode_enabled = false
  138. BTC_sell_only_mode_enabled = true
  139. PAX_sell_only_mode_enabled = true
  140. TUSD_sell_only_mode_enabled = true
  141. USDC_sell_only_mode_enabled = true
  142. USDS_sell_only_mode_enabled = true
  143.  
  144. consecutive_buy_trigger = 6
  145. # Turn off sell only mode if we got x consecutive sells with no buys in between
  146. consecutive_sell_trigger = 1
  147. # This is to protect against Bitcoin rising (aka mooning) or dropping automatically turns on / off SOM as required.
  148. price_trigger_market = BTC
  149. price_rise_trigger = 7
  150. # Turn off sell only mode if it was activated by price rise and the price change is now back below the set threshold.
  151. price_rise_recover_trigger = 4
  152. # Turn on sell only mode (SOM) if the price drops by the set percentage.
  153. price_drop_trigger = 7
  154. # Turn off sell only mode if it was activated by a price drop the price change is now back above the set threshold.
  155. price_drop_recover_trigger = 2.5
  156.  
  157. #
  158. # Coin Specific Settings
  159.  
  160. # This is for the pairs you do not wish to trade, examples only below,
  161. # you need to add your own list here. Make sure none of your enabled pairs
  162. BNB_trading_enabled = false
  163. BNB_reserve_amount = 0
  164.  
  165. #Blacklist
  166. #Binance
  167. #Stable Pairs
  168. BTC_trading_enabled = true
  169. PAX_trading_enabled = false
  170. TUSD_trading_enabled = false
  171. USDC_trading_enabled = false
  172. USDS_trading_enabled = false
  173.  
  174. #Pairs
  175. ADA_trading_enabled = true
  176. BCHABC_trading_enabled = true
  177. BCHSV_trading_enabled = true
  178. BTT_trading_enabled = false
  179. EOS_trading_enabled = true
  180. ETH_trading_enabled = true
  181. FET_trading_enabled = true
  182. HOT_trading_enabled = true
  183. IOTA_trading_enabled = true
  184. LTC_trading_enabled = true
  185. NEO_trading_enabled = true
  186. NULS_trading_enabled = true
  187. ONG_trading_enabled = true
  188. QTUM_trading_enabled = true
  189. TRX_trading_enabled = true
  190. VET_trading_enabled = true
  191. WAVES_trading_enabled = true
  192. XLM_trading_enabled = true
  193. XRP_trading_enabled = true
  194. ZIL_trading_enabled = true
  195. ZRX_trading_enabled = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement