Files
trading_bot_v3/app/test-trading/page.tsx
mindesbunister bd04e0b6a8 FINAL FIX: Docker API URL resolution for internal service communication
- Fixed internal API calls in Docker environment to use port 3000 instead of 9000
- Added DOCKER_ENV detection to properly route internal fetch requests
- Resolves ECONNREFUSED errors when APIs try to call each other within container
- Trade validation now works correctly in Docker: 5 USD position validates properly
- Successfully tested: amountUSD field properly passed through validation pipeline
- Both development and Docker environments now fully functional
2025-07-16 16:35:09 +02:00

17 lines
532 B
TypeScript

'use client'
import React from 'react'
export default function SimpleTradingPage() {
return (
<div className="min-h-screen bg-gray-900 p-8">
<h1 className="text-white text-3xl mb-6">Trading Dashboard</h1>
<div className="bg-gray-800 p-6 rounded-lg">
<h2 className="text-white text-xl mb-4">Chart Area</h2>
<div className="bg-gray-700 h-96 rounded flex items-center justify-center">
<span className="text-gray-300">Chart will load here</span>
</div>
</div>
</div>
)
}