auto-sessions.json 751 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "autoSessions": [
  3. {
  4. "id": "auto-session-1",
  5. "name": "BTC 等量交易会话",
  6. "enabled": true,
  7. "strategy": {
  8. "type": "EQUAL_VOLUME",
  9. "symbol": "BTC-PERP",
  10. "parameters": {
  11. "volumePerOrder": 0.01,
  12. "priceSpread": 0.0001,
  13. "interval": 5000
  14. }
  15. },
  16. "accounts": [
  17. "account-1",
  18. "account-2"
  19. ],
  20. "targetVolume": 1,
  21. "duration": 3600000,
  22. "schedule": {
  23. "enabled": true,
  24. "cron": "0 9 * * *",
  25. "timezone": "Asia/Shanghai"
  26. }
  27. }
  28. ],
  29. "globalSettings": {
  30. "maxConcurrentAutoSessions": 2,
  31. "autoStartDelay": 5000,
  32. "healthCheckBeforeStart": true,
  33. "stopOnSystemShutdown": true
  34. }
  35. }