Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. {
  2. "MM_LONG_DCA_Block": {
  3. "description": "Blocks building position between ROE after X contracts reached",
  4. "pairs": {
  5. "exclude": "",
  6. "include": "XBT-USD",
  7. "exchange": "bitmex_testnet"
  8. },
  9. "filters": {
  10. "positionLONGsizeMin": {
  11. "type": "biggerThan",
  12. "currentQty": 50
  13. },
  14. "CheckROEMin": {
  15. "type": "smallerThan",
  16. "ROE": 0
  17. },
  18. "CheckROEMax": {
  19. "type": "biggerThan",
  20. "ROE": -40
  21. },
  22. "liquidationCheck": {
  23. "type": "variableExact",
  24. "liqIgnore": true
  25. }
  26. },
  27. "overrides": {
  28. "MAX_SELL": 1,
  29. "MAX_BUY": 0
  30. },
  31. "clearOverrides": false,
  32. "schedule": "*/60 * * * * *",
  33. "type": "manageOverrides",
  34. "debug": false
  35. },
  36. "MM_DCA_Resume": {
  37. "description": "Resumes building position between ROE after X contracts reached",
  38. "pairs": {
  39. "exclude": "",
  40. "include": "XBT-USD",
  41. "exchange": "bitmex_testnet"
  42. },
  43. "filters": {
  44. "positionLONGsizeMin": {
  45. "type": "biggerThan",
  46. "currentQty": 50
  47. },
  48. "CheckROEMin": {
  49. "type": "smallerThan",
  50. "ROE": -40
  51. },
  52. "CheckROEMax": {
  53. "type": "biggerThan",
  54. "ROE": -100
  55. },
  56. "liquidationCheck": {
  57. "type": "variableExact",
  58. "liqIgnore": true
  59. }
  60. },
  61. "overrides": {
  62. "MAX_SELL": 1,
  63. "MAX_BUY": 1
  64. },
  65. "clearOverrides": false,
  66. "schedule": "*/60 * * * * *",
  67. "type": "manageOverrides",
  68. "debug": false
  69. },
  70. "MM_SHORT_DCA_Block": {
  71. "description": "Blocks building position between ROE after X contracts reached",
  72. "pairs": {
  73. "exclude": "",
  74. "include": "XBT-USD",
  75. "exchange": "bitmex_testnet"
  76. },
  77. "filters": {
  78. "positionSHORTsizeMin": {
  79. "type": "biggerThan",
  80. "currentQty": 50
  81. },
  82. "CheckROEMin": {
  83. "type": "smallerThan",
  84. "ROE": 0
  85. },
  86. "CheckROEMax": {
  87. "type": "biggerThan",
  88. "ROE": -40
  89. },
  90. "liquidationCheck": {
  91. "type": "variableExact",
  92. "liqIgnore": true
  93. }
  94. },
  95. "overrides": {
  96. "MAX_SELL": 0,
  97. "MAX_BUY": 1
  98. },
  99. "clearOverrides": false,
  100. "schedule": "*/60 * * * * *",
  101. "type": "manageOverrides",
  102. "debug": false
  103. }
  104. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement