Advertisement
den4ik2003

Untitled

Feb 7th, 2025
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1. {
  2. "accounts_dir": "/home/ubuntu/keys/",
  3. "symbols": [
  4. {
  5. "account": "TEST_1",
  6. "market": "BITMART_SPOT",
  7. "symbol": "LAI_USDT",
  8. "data": {
  9. "events": [
  10. "ORDER_BOOK",
  11. "TRADE",
  12. ["TICK", {"interval": 100}]
  13. ],
  14. "use_part_depth": true
  15. },
  16. "execution": {
  17. "cancel_on_start": "true",
  18. "print_ws_events": "true",
  19. "position": {
  20. "close_cooldown": 180000
  21. }
  22. },
  23. "logger": {
  24. "severity_level": "DEBUG"
  25. }
  26. }
  27. ],
  28. "strategies": [
  29. {
  30. "label": "52",
  31. "name": "MARKET_MAKING",
  32.  
  33. "init_spread_size": "200",
  34. "cooldown": "3000",
  35. "pricing_mode": "by_mid_price",
  36. "self_target_market": "BITMART_SPOT",
  37. "params": [
  38. {
  39. "spread_size": "6500",
  40. "zero_quote": "57.6577",
  41. "zero_base": "8943",
  42. "offset_quote": "57.6577",
  43. "offset_base": "4945",
  44. "zones":
  45. [
  46. {
  47. "bound": "100",
  48. "n_levels": "3",
  49. "total": "20",
  50. "quantity_step": "0",
  51. "side": "BUY",
  52. "protection": "false",
  53. },
  54. {
  55. "bound": "300",
  56. "n_levels": "3",
  57. "total": "18",
  58. "quantity_step": "0",
  59. "side": "BUY",
  60. "protection": "false",
  61. },
  62. {
  63. "bound": "100",
  64. "n_levels": "3",
  65. "total": "100",
  66. "quantity_step": "0",
  67. "side": "SELL",
  68. "protection": "false",
  69. },
  70. ],
  71. },
  72. ]
  73.  
  74. "symbols": [
  75. {
  76. "account": "TEST_1",
  77. "market": "BITMART_SPOT",
  78. "symbol": "LAI_USDT"
  79. }
  80. ]
  81. }
  82. ],
  83. "managers": [
  84. {
  85. "name": "VANILLA",
  86. "labels": [
  87. "52"
  88. ]
  89. }
  90. ],
  91. "logger": {
  92. "severity_level": "DEBUG"
  93. },
  94. "portfolio": {
  95. "telemetry_dir": "/mnt/telemetry/"
  96. }
  97. }
  98.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement