We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/j1c4b/mcp-hybrid-forecasting'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
organize_project.shโข2.33 kB
# Project Organization Script
# Run these commands to organize your working system into professional structure
echo "๐ Organizing Enhanced Trading System"
echo "======================================"
# Step 1: Your models are already perfect - verify they exist
echo "๐ Checking existing model files..."
if [ -f "models/arima_model.py" ] && [ -f "models/hybrid_model.py" ]; then
echo "โ Model files already in correct location"
else
echo "โ Model files missing - ensure you have:"
echo " - models/arima_model.py (enhanced ARIMA)"
echo " - models/hybrid_model.py (fixed XGBoost)"
fi
# Step 2: Move test scripts to scripts directory (if they exist)
echo -e "\n๐ Moving test scripts..."
if [ -f "quick_test_fixed.py" ]; then
mv quick_test_fixed.py scripts/quick_test.py
echo "โ Moved quick_test_fixed.py โ scripts/quick_test.py"
fi
if [ -f "test_fixed_system.py" ]; then
mv test_fixed_system.py scripts/test_system.py
echo "โ Moved test_fixed_system.py โ scripts/test_system.py"
fi
# Step 3: Create the src directory structure (already done by setup script)
echo -e "\n๐ฆ Verifying src structure..."
for dir in "src/trading" "src/analysis" "src/utils" "src/data"; do
if [ -d "$dir" ]; then
echo "โ $dir exists"
else
echo "โ $dir missing"
fi
done
# Step 4: Backup current main.py if it exists
echo -e "\n๐พ Backing up current files..."
if [ -f "main.py" ]; then
cp main.py main_backup.py
echo "โ Backed up main.py โ main_backup.py"
fi
# Step 5: Show what needs to be created
echo -e "\n๐ Files to create:"
echo " 1. Enhanced main.py (from working_main artifact)"
echo " 2. src/trading/signal_generator.py (extract from main.py)"
echo " 3. config/trading_config.json (configuration)"
# Step 6: Verify your working system
echo -e "\n๐งช Testing current system..."
if [ -f "scripts/quick_test.py" ]; then
echo "โ Test script available: scripts/quick_test.py"
echo " Run: python scripts/quick_test.py"
else
echo "โ Test script missing"
fi
echo -e "\n๐ฏ Current Status:"
echo "โ Models: Already in correct location"
echo "โ Directory structure: Created"
echo "โ Test scripts: Organized"
echo "โณ Next: Create enhanced main.py and configuration"
echo -e "\n๐ Ready for next phase!"