Advertisement
Guest User

Untitled

a guest
Feb 24th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.23 KB | None | 0 0
  1. {
  2. "General": {
  3. "BaseCurrency": "BTC", // MARKET
  4. "BuyStrategy": "EMAGAIN", // ALL_buy_strategy
  5. "BuyValue": "-0.5", // ALL_buy_value
  6. "Cost": "10", // ALL_max_cost or or All_max_cost_percentage
  7. "DcaEnabled": "-1", // ALL_DCA_enabled
  8. "DcaMaxBuySpread": "1.5", // max_buy_spread in DCA.properties
  9. "DcaMaxBuyTimes": "2", // max_buy_times in DCA.properties
  10. "DcaMaxCost": "0", // max_cost in DCA.properties
  11. "DcaMinBuyBalance": "0", // min_buy_balance in DCA.properties depending on UseMinBuyBalancePercentage in hostsettings.json
  12. "DcaSellTrigger": "1", // sell_trigger in DCA.properties
  13. "DcaSellStrategy": "GAIN", // sell_strategy in DCA.properties
  14. "DcaSellValue": "0.50", // sell_value in DCA.properties
  15. "DcaTrailingBuy": ".10", // trailing_buy in DCA.properties
  16. "DcaTrailingProfit": ".10", // trialing_profit in DCA.properties
  17. "ExcludedPairs": "BNB", // coins you don't want PTF to create settings for. These will have no config generated and will appear in watchmode
  18. "SomOnlyPairs": "MTL,TRIG,MTL,SWIFT,ARDR,SAFEX,BTA,DNT,DAR,DRACO,SLING,CRYPT,CDT,DOGE,UNO,SC,NAV,ETC,ETH,XRB,XRP,INCNT,NAUT,HSR,SJCX,DNT,NOTE,TKN,TIME,CHAT,BLZ,STEEM,RPX,LTC,AE,VIA,NAVI", // these are coins where BASE_COIN_sell_only_mode will be true
  19. "DcaExcluded": "BNB", // coins you don't want DCA enabled for no matter what
  20. "EnabledPairsOnly": "", // coins that you only want to trade. If pairs are in here and the ExcludedList, they will not be traded
  21. "MaxBuySpread": "1.5", // All_max_buy_spread
  22. "MaxTrailingBuy": ".25", // All_trailing_buy
  23. "MaxTrailingProfit": ".25", // All_tailing_profit
  24. "MinBuyBalance": "0", // All_min_buy_balance or All_min_buy_balance_percentage
  25. "MinBuyPrice": "0.000005", // All_min_buy_price
  26. "MinBuyVolume": "1200", // All_min_buy_volume
  27. "MinProfit": "0.8", // All_min_profit
  28. "MinTrailingBuy": "0.05", // minumum the trailing buy after offsets can be
  29. "MinTrailingProfit": "0.10", // minumum the trailing buy after offsets can be
  30. "MinutesForLongerTermTrend": "1440", // minutes to measure trend for LongerTermPriceChange
  31. "MinutesToMeasureTrend": "30", // minutes to measure trend for base coin trend, PriceTrendChange and volatility calc
  32. "NumberOfPairs": "4", // ALL_max_trading_pairs
  33. "SellStrategy": "GAIN", // ALL_sell_strategy
  34. "SellValue": "0.20", // ALL_sell_value
  35. "TopCurrenciesToCheck": "50" // number of pairs to check from your exchange for MaxTopCoinAverageChange
  36. },
  37. "MarketConditions": {
  38. "Configs": [
  39. {
  40. // If the top coins average is less than -1.5%, then go into Sell Only Mode
  41. "FolderName": "01-bear",
  42. "MaxTopCoinAverageChange": "-1.5",
  43. "BuyValueOffset": "-30",
  44. "SellOnlyMode": "false",
  45. "SellValueOffset": "-20"
  46. },
  47. {
  48. // Only use the defaults if we are in a boring market - more than -1.5 change and less than 0.5% change
  49. "FolderName": "02-boring",
  50. "MaxTopCoinAverageChange": "0.5"
  51. },
  52. {
  53. // 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.
  54. "FolderName": "03-bull",
  55. "MaxTopCoinAverageChange": "1000",
  56. "BuyValueOffset": "2"
  57. }
  58. ]
  59. },
  60. "Volume": {
  61. "Configs": [
  62. {
  63. // For any coins with a volume of less than 500 BTC, then increase the trailingbuy by 10% and reduce the trailing profit by -20%
  64. "MaxVolume": "500",
  65. "TrailingBuyOffset": "10",
  66. "TrailingProfitOffset": "-20",
  67. "DcaEnabled": "-20"
  68. }
  69. ]
  70. },
  71. "PriceTrendChange": {
  72. "Configs": [
  73. {
  74. // if a coin has dropped more than -5% in "MinutesToMeasureTrend": "60", then go sell only mode and drop the SellValue by 20%
  75. "MaxPriceTrendPercentageChange": "-5",
  76. "SellOnlyMode": "true",
  77. "SellValueOffset": "-20"
  78. },
  79. {
  80. // if a coin has changed between -5% and 0.5% then increase the TrailingProfit by 5% and reduce the TrailingBuy by -70%
  81. "MaxPriceTrendPercentageChange": "0.5",
  82. "TrailingBuyOffset": "-70",
  83. "TrailingProfitOffset": "5"
  84. }
  85. ]
  86. }
  87. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement