feat: implement comprehensive Technical Analysis fundamentals
- Add TECHNICAL_ANALYSIS_BASICS.md with complete indicator explanations - Add TA_QUICK_REFERENCE.md for quick lookup - Enhance AI analysis prompts with TA principles integration - Improve JSON response structure with dedicated analysis sections - Add cross-layout consensus analysis for higher confidence signals - Include timeframe-specific risk assessment and position sizing - Add educational content for RSI, MACD, EMAs, Stochastic RSI, VWAP, OBV - Implement layout-specific analysis (AI vs DIY layouts) - Add momentum, trend, and volume analysis separation - Update README with TA documentation references - Create implementation summary and test files
This commit is contained in:
@@ -8,7 +8,7 @@ echo "💻 CPU cores available: $(nproc)"
|
||||
|
||||
# Stop existing containers
|
||||
echo "🛑 Stopping existing containers..."
|
||||
docker-compose down
|
||||
docker compose down
|
||||
|
||||
# Clean up old images to free space (optional)
|
||||
echo "🧹 Cleaning up old images..."
|
||||
@@ -20,7 +20,7 @@ export BUILDKIT_PROGRESS=plain
|
||||
|
||||
# Build with maximum parallelism
|
||||
echo "⚡ Building with maximum CPU utilization..."
|
||||
docker-compose build \
|
||||
docker compose build \
|
||||
--parallel \
|
||||
--build-arg JOBS=$(nproc) \
|
||||
--build-arg NODE_OPTIONS="--max-old-space-size=4096" \
|
||||
@@ -28,11 +28,11 @@ docker-compose build \
|
||||
|
||||
# Start the optimized container
|
||||
echo "🔄 Starting optimized container..."
|
||||
docker-compose up -d
|
||||
docker compose up -d
|
||||
|
||||
# Show build results
|
||||
echo "✅ Build completed!"
|
||||
echo "📊 Container status:"
|
||||
docker-compose ps
|
||||
docker compose ps
|
||||
|
||||
echo "🎯 Build optimization complete! Your i7-4790K should now be fully utilized."
|
||||
|
||||
Reference in New Issue
Block a user