Advertisement
Blaatman

appsettings

Apr 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.07 KB | None | 0 0
  1. {
  2. "General": {
  3. "BaseCurrency": "ETH", // MARKET
  4. "BuyStrategy": "EMAGAIN", // ALL_buy_strategy
  5. "BuyValue": "-0.97", // ALL_buy_value
  6. "MaxCost": "0.25", // ALL_max_cost or or All_max_cost_percentage
  7. "DcaEnabled": "true", // 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.65", // 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": "", // if there are any coins in this list, ONLY these coins will have dca enabled.
  19. "MaxBuySpread": "0.75", // All_max_buy_spread
  20. "TrailingBuy": "0.377", // All_trailing_buy
  21. "MinTrailingBuy": "0.05", // The Lowest Trailing buy
  22. "MaxTrailingBuy": "0.577", // Highest Trailing buy can be moved
  23. "TrailingProfit": "0.277", // All_tailing_profit
  24. "MaxTrailingProfit": "0.477", // Max Change to Trailing Profit
  25. "MinBuyBalance": "30", // All_min_buy_balance or All_min_buy_balance_percentage
  26. "MinBuyPrice": "0.00005", // All_min_buy_price
  27. "MinBuyVolume": "1000", // All_min_buy_volume
  28. "MinutesForLongerTermTrend": "1440", // minutes to measure trend for LongerTermPriceChange
  29. "MinutesToMeasureTrend": "30", // minutes to measure trend for base coin trend, PriceTrendChange and volatility calc
  30. "MaxTradingPairs": "20", // ALL_max_trading_pairs
  31. "SellStrategy": "GAIN", // ALL_sell_strategy
  32. "SellValue": "0.75", // ALL_sell_value
  33. "TopCurrenciesToCheck": "50" // number of pairs to check from your exchange for MaxTopCoinAverageChange
  34. },
  35. "MarketConditions": {
  36. "Configs": [
  37. {
  38. "FolderName": "01-superbear",
  39. "MaxTopCoinAverageChange": "-5",
  40. "MinBaseCoinPriceChange": "-2",
  41. "SellOnlyMode": "true",
  42. "DcaEnabled": "false"
  43. },
  44. {
  45. "FolderName": "02-bear",
  46. "MaxTopCoinAverageChange": "-2"
  47. },
  48. {
  49. "FolderName": "03-boring",
  50. "MaxTopCoinAverageChange": "2.5"
  51. },
  52. {
  53. "FolderName": "04-bull",
  54. "BuyStrategy": {
  55. "BuyValue": "-.35",
  56. "BuyStrategy": "EMAGAIN",
  57. "Weight": "55"
  58. },
  59. "MaxTopCoinAverageChange": "5"
  60. },
  61. {
  62. "FolderName": "05-superbull",
  63. "DcaEnabled": "false",
  64. "SellOnlyMode": "true",
  65. "MinBaseCoinPriceChange": "2",
  66. "MaxTopCoinAverageChange": "1000"
  67. }
  68. ]
  69. },
  70. "PriceTrendChange": {
  71. "Configs": [
  72. {
  73. "MaxPriceTrendPercentageChange": "-10000"
  74. },
  75. {
  76. "MaxPriceTrendPercentageChange": "-5",
  77. "TrailingProfitOffset": "-10",
  78. "DcaEnabled": "false",
  79. "SellOnlyMode": "true"
  80. },
  81. {
  82. "MaxPriceTrendPercentageChange": "-2",
  83. "TrailingProfitOffset": "-10"
  84. },
  85. {
  86. "MaxPriceTrendPercentageChange": "5"
  87. },
  88. {
  89. "MaxPriceTrendPercentageChange": "15000",
  90. "TrailingProfitOffset": "-10",
  91. "SellValueOffset": "-30",
  92. "SellOnlyMode": "true"
  93. }
  94. ]
  95. },
  96. "LongerTermPriceChange": {
  97. "Configs": [
  98. {
  99. "MaxPriceTrendPercentageChange": "-10000"
  100. },
  101. {
  102. "MaxPriceTrendPercentageChange": "-15",
  103. "TrailingProfitOffset": "-10",
  104. "SellOnlyMode": "true"
  105. },
  106. {
  107. "MaxPriceTrendPercentageChange": "10"
  108. },
  109. {
  110. "MaxPriceTrendPercentageChange": "10000",
  111. "TrailingProfitOffset": "-10",
  112. "SellOnlyMode": "true"
  113. }
  114. ]
  115. }
  116. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement