Advertisement
Guest User

Market Conditions-0225

a guest
Feb 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. "MarketConditions": {
  2. "Configs": [
  3. {
  4. // If the top coins average is less than -3%, then go into Sell Only Mode
  5. "FolderName": "01-superbear",
  6. "MaxTopCoinAverageChange": "-3",
  7. "MinBaseCoinPriceChange": "3",
  8. "DcaEnabled": "false",
  9. "SellOnlyMode": "true",
  10. "TrailingProfitOffset": "-30",
  11. "SellValueOffset": "-30",
  12. "BuyValueOffset": "-766"
  13. },
  14. {
  15. // Decrease the buy value if we are in a bear market. More than -3% and less -1.5%.
  16. "FolderName": "02-bear",
  17. "MaxTopCoinAverageChange": "-1.5",
  18. "MinBaseCoinPriceChange": "1.5",
  19. "DcaTrailingBuyOffset": "25",
  20. "DcaTrailingProfitOffset": "-25",
  21. "DcaEnabled": "-100",
  22. "DcaSellValueOffset": "-10",
  23. "SellValueOffset": "-20",
  24. "BuyValueOffset": "-266",
  25. "MaxPairsOffset": "-20",
  26. "DcaMaxBuyTimesOffset": "40"
  27. },
  28. {
  29. // Only use the defaults if we are in a boring market - more than -1.5 change and less than 1.5% change
  30. "FolderName": "03-boring",
  31. "MaxTopCoinAverageChange": "1.5"
  32. "MinBaseCoinPriceChange": ".5"
  33. },
  34. {
  35. // Increase the buy value if we are in a bull market. More than 3% and less 1000%. This is a catch all as in the market conditions, you need a section for all scenarios.
  36. "FolderName": "04-bull",
  37. "MaxTopCoinAverageChange": "3",
  38. "MinBaseCoinPriceChange": "-.5",
  39. "DcaTrailingBuyOffset": "10",
  40. "DcaTrailingProfitOffset": "10",
  41. "DcaSellValueOffset": "10",
  42. "SellValueOffset": "10",
  43. "BuyValueOffset": "333"
  44. },
  45. {
  46. // Increase the buy value if we are in a superbull market. More than 1000%.
  47. "FolderName": "05-superbull",
  48. "MaxTopCoinAverageChange": "1000",
  49. "MinBaseCoinPriceChange": "-3",
  50. "DcaTrailingBuyOffset": "25",
  51. "DcaTrailingProfitOffset": "25",
  52. "DcaSellValueOffset": "30",
  53. "SellValueOffset": "30",
  54. "MinBuyBalanceOffset": "-15",
  55. "BuyValueOffset": "833",
  56. "MaxPairsOffset": "30"
  57. }
  58. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement