Market Data Service is a high-performance financial data API that provides comprehensive Symbol prices of different markets through both RESTful endpoints and real-time WebSocket connections.

stop_proxy.bat 859B

1234567891011121314151617181920212223242526272829303132333435
  1. @echo off
  2. echo ========================================
  3. echo Market Data Proxy Stopper
  4. echo ========================================
  5. echo.
  6. echo Stopping Nginx...
  7. REM Find and kill nginx process
  8. taskkill /f /im nginx.exe >nul 2>&1
  9. if !errorLevel! == 0 (
  10. echo [✓] Nginx stopped
  11. ) else (
  12. echo [ℹ] Nginx was not running
  13. )
  14. echo.
  15. echo Stopping Node.js API server...
  16. REM Find and kill node processes (npm start creates node.exe)
  17. taskkill /f /im node.exe >nul 2>&1
  18. if !errorLevel! == 0 (
  19. echo [✓] Node.js API server stopped
  20. ) else (
  21. echo [ℹ] Node.js API server was not running
  22. )
  23. echo.
  24. echo ========================================
  25. echo All services stopped!
  26. echo ========================================
  27. echo.
  28. echo You can now safely close applications or restart services.
  29. echo.
  30. echo Press any key to close this window...
  31. pause >nul