Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.79 KB | None | 0 0
  1. {
  2. "General": {
  3. "BaseCurrency": "BTC", // MARKET
  4. "BuyStrategy": "LOWBB", // ALL_buy_strategy
  5. "BuyValue": "15", // ALL_buy_value
  6. "MaxCost": "0.003", // ALL_max_cost or or All_max_cost_percentage
  7. "DcaEnabled": "-3", // ALL_DCA_enabled
  8. "DcaMaxBuySpread": "1", // max_buy_spread in DCA.properties
  9. "DcaMaxBuyTimes": "5", // max_buy_times in DCA.properties
  10. "DcaMaxCost": "0", // max_cost in DCA.properties
  11. "DcaMinBuyBalance": "20", // min_buy_balance in DCA.properties depending on UseMinBuyBalancePercentage in hostsettings.json
  12. "DcaSellStrategy": "GAIN", // sell_strategy in DCA.properties
  13. "DcaSellValue": "0.75", // sell_value in DCA.properties
  14. "DcaTrailingBuy": "0.15", // trailing_buy in DCA.properties
  15. "DcaTrailingProfit": "0.15", // trialing_profit in DCA.properties
  16. "ExcludedCoins": "BNB", // coins you don't want PTF to create settings for. These will have no config generated and will appear in watchmode
  17. "SomOnlyCoins": "MTL,DGD,TRIG,MTL,SWIFT,ARDR,SAFEX,BTA,DAR,DRACO,SLING,CRYPT,DOGE,UNO,SC,INCNT,NAUT,SJCX,NOTE,TKN,TIME", // these are coins where BASE_COIN_sell_only_mode will be true
  18. "DcaIncludedCoins": "ETH", // if there are any coins in this list, ONLY these coins will have dca enabled.
  19. "MaxBuySpread": "1", // All_max_buy_spread
  20. "TrailingBuy": "0.3", // All_trailing_buy
  21. "TrailingProfit": "0.3", // All_tailing_profit
  22. "MinBuyBalance": "50", // All_min_buy_balance or All_min_buy_balance_percentage
  23. "MinBuyPrice": "0.00005", // All_min_buy_price
  24. "MinBuyVolume": "500", // All_min_buy_volume
  25. "MinutesForLongerTermTrend": "720", // minutes to measure trend for LongerTermPriceChange
  26. "MinutesToMeasureTrend": "60", // minutes to measure trend for base coin trend, PriceTrendChange and volatility calc
  27. "MaxTradingPairs": "15", // ALL_max_trading_pairs
  28. "SellStrategy": "GAIN", // ALL_sell_strategy
  29. "SellValue": "0.75", // ALL_sell_value
  30. "TopCurrenciesToCheck": "35" // number of pairs to check from your exchange for MaxTopCoinAverageChange
  31. },
  32. "MarketConditions": {
  33. "Configs": [
  34. {
  35. // If the top coins average is less than -1.5%, then go into Sell Only Mode
  36. "FolderName": "01-bear",
  37. "MaxTopCoinAverageChange": "-1.5",
  38. "BuyValueOffset": "-30",
  39. "SellOnlyMode": "true",
  40. "SellValueOffset": "-20"
  41. },
  42. {
  43. // Only use the defaults if we are in a boring market - more than -1.5 change and less than 0.5% change
  44. "FolderName": "02-boring",
  45. "MaxTopCoinAverageChange": "0.5"
  46. },
  47. {
  48. // Increase the buyvalue if we are in a bull market. More than 0.5% and less 1000%. This is a catch all as in the market conditions, you need a section for all scenarios.
  49. "FolderName": "03-bull",
  50. "MaxTopCoinAverageChange": "1000",
  51. "BuyValueOffset": "2"
  52. }
  53. ]
  54. },
  55. "Volume": {
  56. "Configs": [
  57. {
  58. // For any coins with a volume of less than 500 BTC, then increase the trailingbuy by 10% and reduce the trailing profit by -20%
  59. "MaxVolume": "500",
  60. "TrailingBuyOffset": "10",
  61. "TrailingProfitOffset": "-20",
  62. "DcaEnabled": "-20"
  63. }
  64. ]
  65. },
  66. "PriceTrendChange": {
  67. "Configs": [
  68. {
  69. // if a coin has dropped more than -5% in "MinutesToMeasureTrend": "60", then go sell only mode and drop the SellValue by 20%
  70. "MaxPriceTrendPercentageChange": "-5",
  71. "SellOnlyMode": "true",
  72. "SellValueOffset": "-20"
  73. },
  74. {
  75. // if a coin has changed between -5% and 0.5% then increase the TrailingProfit by 5% and reduce the TrailingBuy by -70%
  76. "MaxPriceTrendPercentageChange": "0.5",
  77. "TrailingBuyOffset": "-70",
  78. "TrailingProfitOffset": "5"
  79. }
  80. ]
  81. }
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement