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.

start_nginx.ps1 260B

123456
  1. # Start Nginx proxy server
  2. Write-Host "Starting Nginx proxy server..." -ForegroundColor Green
  3. cd "nginx-1.24.0"
  4. Start-Process -FilePath ".\nginx.exe" -WorkingDirectory (Get-Location) -NoNewWindow
  5. Write-Host "Nginx started successfully!" -ForegroundColor Green