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 947B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. @echo off
  2. echo ========================================
  3. echo Market Data Proxy Stopper
  4. echo ========================================
  5. echo.
  6. REM Stop Nginx processes
  7. echo Stopping Nginx proxy server...
  8. taskkill /f /im nginx.exe >nul 2>&1
  9. if errorlevel 1 (
  10. echo [ℹ] Nginx proxy server was not running
  11. ) else (
  12. echo [✓] Nginx proxy server stopped
  13. )
  14. echo.
  15. echo Stopping Node.js API server...
  16. REM Stop all node.exe processes
  17. taskkill /f /im node.exe >nul 2>&1
  18. if errorlevel 1 (
  19. echo [ℹ] Node.js API server was not running
  20. ) else (
  21. echo [✓] Node.js API server stopped
  22. )
  23. echo.
  24. echo ========================================
  25. echo All services stopped!
  26. echo ========================================
  27. echo.
  28. echo Services that were running have been stopped.
  29. echo You can now safely:
  30. echo - Close applications
  31. echo - Restart services
  32. echo - Run start_proxy.bat again
  33. echo.
  34. echo Press any key to close this window...
  35. pause >nul