Advertisement
Guest User

Untitled

a guest
May 11th, 2017
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.55 KB | None | 0 0
  1.  
  2. [BOT]
  3. #Sleeps between active iterations, time in seconds (1-3600)
  4. sleeptimeactive = 60
  5.  
  6. #Sleeps between inactive iterations, time in seconds (1-3600)
  7. #Set to the same value as sleeptimeactive to disable
  8. sleeptimeinactive = 120
  9.  
  10. #Minimum daily lend rate in percent (0.0031-5)
  11. #Setting to 0.0031 is about 1% a year, not worth it.
  12. mindailyrate = 0.05
  13.  
  14. #Maximum lending rate. 2% is good choice because it's default at margin trader interface.
  15. #5% is the maximum rate accepted by the exchange (0.003-5)
  16. maxdailyrate = 5
  17.  
  18. #The number of offers to split the available balance across the [gaptop, gapbottom] range. (1-20)
  19. spreadlend = 10
  20.  
  21. #The depth of lendbook (in percent of lendable balance) to move through
  22. #before placing the first (gapbottom) and last (gaptop) offer.
  23. #If gapbottom is set to 0, the first offer will be at the lowest possible rate.
  24. #However some low value is recommended (say 10%) to skip dust offers.
  25. gapbottom = 30
  26. gaptop = 200
  27.  
  28. #Daily lend rate threshold after which we offer lends for x days as opposed to 2.
  29. #If set to 0 all offers will be placed for a 2 day period (0.003-5)
  30. xdaythreshold = 5
  31. xdays = 2
  32. #xdaythreshold = 0.8
  33. #xdays = 60
  34.  
  35. #Auto-transfer of funds from exchange to lending balance.
  36. #Enter ALL to transfer all coins, enter ACTIVE to transfer any coins you have in your lending account when the bot starts, these can be mixed.
  37. #The currencies you enter below (comment it out to disable entirely, just leaving empty will result in an error) will be automatically transferred from your exchange balance to your lending balance whenever you deposit them.
  38. #transferableCurrencies = STR,BTC,BTS,CLAM,DOGE,DASH,LTC,MAID,XMR,XRP,ETH,FCT
  39.  
  40. #Minimum loan size, the minimum size of offers to make, bigger values prevent the bot from loaning small available amounts but reduce loan fragmentation.
  41. minloansize = 0.01
  42.  
  43. #Keep Stuck Orders - Sometimes an order gets partially filled. When this happens it may leave the remainder of your coin under the set minloansize.
  44. #If this happens, KeepStuckOrders will keep your order where it is so maybe it can be filled. Otherwise it will be canceled and held until orders expire.
  45. keepstuckorders = True
  46.  
  47. #Hide coins - Instead of keeping your coins lent out at minlendrate when it is not met, the bot will hold them and wait for the rate to surpass it.
  48. hideCoins = True
  49.  
  50. #End date for lending, bot will try to make sure all your loans are done by this date so you can withdraw or do whatever you need.
  51. #Uncomment to enable.
  52. #Format: YEAR,MONTH,DAY
  53. #endDate = 2016,12,25
  54.  
  55. #Raw maximum amount to lend if under maxtolendrate.
  56. #If set to 0 or commented: the bot will check for maxpercenttolend.(0+)
  57. #maxtolend = 0
  58.  
  59. #Maximum percent to lend if under maxtolendrate.
  60. #If set to 0 or commented: the bot will lend 100% of your balance regardless of rate. (0-100)
  61. #maxpercenttolend = 0
  62.  
  63. #Max to lend conditional rate.
  64. #If set to more than 0: the maxtolend or maxpercenttolend will be used when the rate is less than or equal to the maxtolendrate.
  65. #If set to 0 or commented: the bot will use the maxtolend or maxpercenttolend all the time. (0.0031-5)
  66. #maxtolendrate = 0
  67.  
  68. # Local Market Analysis: Choose which coins to record the market of in order to analyse them and compute a recommended lending rate.
  69. # Enter ALL to analyse all coins, enter ACTIVE to analyse the markets of any coins you have in your lending account when the bot starts, these can be mixed.
  70. #analyseCurrencies = STR,BTC,BTS,CLAM,DOGE,DASH,LTC,MAID,XMR,XRP,ETH,FCT
  71. analyseCurrencies = ACTIVE
  72. # Choose how long to keep market data. (In days) (1-365)
  73. #analyseMaxAge = 30
  74. # Choose how often to record a market's rate. (In seconds.) (10-3600)
  75. #analyseUpdateInterval = 60
  76. # Choose how aggressive to lend at based on a market's performance. (As a percentile of the market's rate.) (1-99)
  77. # Recommendations: Conservative = 50, Moderate = 75, Aggressive = 90, Very Aggressive = 99
  78. #lendingStyle = 50
  79.  
  80. #Syntax: ["COIN:mindailyrate:maxactiveamount:maxtolend:maxpercenttolend:maxtolendrate",...]
  81. #If maxactive amount is 0: stop lending this coin. in the future you'll be able to limit amount to be lent.
  82. #If maxtolend is 0: check for maxpercenttolend.
  83. #If maxpercenttolend is 0: 100% is going to be lent.
  84. #If maxtolendrate is set to more than 0: the maxtolend or maxpercenttolend will be used when then rate is less or equal to the maxtolendrate. if set to 0 the bot will use the maxtolend or maxpercenttolend all the time.
  85. # Please configure via the coinconfig line below OR individual coins in the [BTC], [CLAM], etc section. NOT both.
  86. # coinconfig takes precedence
  87. #coinconfig = ["BTC:0.18:1:0:0:0","CLAM:0.6:1:0:0:0"]
  88.  
  89. #This option creates a json log file instead of console output which includes the most recent status.
  90. #Uncomment both jsonfile and jsonlogsize to enable.
  91. #Keep this in the default location if you want to use the webserver.
  92. jsonfile = www/botlog.json
  93.  
  94. #Limits the amount of log lines to save.
  95. jsonlogsize = 200
  96.  
  97. #Enables a webserver for the www folder, in order to easily use the lendingbot.html with the .json log.
  98. startWebServer = true
  99.  
  100. #Customize the IP and port that the webserver is hosted on. Defaults to 0.0.0.0:8000
  101. #0.0.0.0 will point to your default IP (Local IP on LAN as well as localhost), set to 127.0.0.1 if you want it to be only accessible by host computer.
  102. #Do not set to a reserved port
  103. #Advanced users only.
  104. customWebServerAddress = 127.0.0.1:8000
  105.  
  106. #The currency that the HTML Overview will present the earnings summary in.
  107. #Options are BTC, USDT, ETH or anything as long as it has a direct BTC market. The default is BTC.
  108. outputCurrency = USDT
  109.  
  110. # Currencies can be configured here, or in the coinconfig. Coinconfig takes precedence.
  111. #[BTC]
  112. #minloansize = 0.01
  113. #mindailyrate = 0.18
  114. #maxactiveamount = 1
  115. #maxtolend = 0
  116. #maxpercenttolend = 0
  117. #maxtolendrate = 0
  118.  
  119. #[CLAM]
  120. #minloansize = 1
  121. #mindailyrate = 0.6
  122. #maxactiveamount = 1
  123. #maxtolend = 0
  124. #maxpercenttolend = 0
  125. #maxtolendrate = 0
  126.  
  127. [notifications]
  128. notify_new_loans = False
  129. notify_tx_coins = False
  130. notify_xday_threshold = False
  131. notify_summary_minutes = 0
  132. notify_caught_exception = False
  133.  
  134. email = False
  135. email_login_address = me@gmail.com
  136. email_login_password = secretPassword
  137. email_smtp_server = smtp.gmail.com
  138. email_smtp_port = 465
  139. email_to_addresses = me@gmail.com,you@gmail.com
  140.  
  141. slack = False
  142. slack_token = 1234567890abcdef
  143. slack_channels = #cryptocurrency,@someUser
  144.  
  145. telegram = False
  146. telegram_bot_id = 1234567890abcdef
  147. telegram_chat_ids = @polopolo,@cryptocurrency
  148.  
  149. pushbullet = False
  150. pushbullet_token = 1234567890abcdef
  151. pushbullet_deviceid = 1234567890abcdef
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement