Multi AI Consensus Max - User Manual

3 July 2025, 04:04
Michael Schuster
0
46

📖 USER MANUAL - MULTI AI CONSENSUS TRADING SYSTEM

System Requirements

  • MetaTrader 5 (Build 3815 or newer)
  • Stable Internet Connection (for AI API calls)
  • Windows/Mac/Linux (any OS supporting MT5)

Installation Guide

  1. Download the EA file (.ex5)
  2. Copy to: MT5_Data_Folder/MQL5/Experts/
  3. Restart MetaTrader 5
  4. Attach to desired chart
  5. Enable AutoTrading in MT5 (for Max version)

WebRequest Setup

⚠️ CRITICAL: This step is MANDATORY for the EA to work!

Step-by-Step WebRequest Configuration:

  1. Open MetaTrader 5
  2. Go to: Tools → Options
  3. Click: Expert Advisors tab
  4. Check: ☑️ Allow WebRequest for listed URLs
  5. Add these URLs (click "Add" for each):

  1. Click: OK to save
  2. Restart MetaTrader 5

AI API Keys Setup

🤖 1. CLAUDE (Anthropic)

How to get API key:

  1. Visit: https://console.anthropic.com/
  2. Create account or Sign in
  3. Go to: API Keys section
  4. Click: Create Key
  5. Copy the key (starts with sk-ant- )

Cost: ~$0.50/1000 queries (Haiku model)

🧠 2. OPENAI (GPT-4)

How to get API key:

  1. Visit: https://platform.openai.com/
  2. Create account or Sign in
  3. Go to: API Keys section
  4. Click: Create new secret key
  5. Copy the key (starts with sk- )

Cost: ~$1.00/1000 queries (GPT-4o-mini)

🦾 3. GROK (X.AI)

How to get API key:

  1. Visit: https://console.x.ai/
  2. Create account (requires X/Twitter account)
  3. Go to: API Keys
  4. Generate new key
  5. Copy the key

Cost: ~$2.00/1000 queries

🔬 4. DEEPSEEK

How to get API key:

  1. Visit: https://platform.deepseek.com/
  2. Register account
  3. Navigate to: API Management
  4. Create API key
  5. Copy the key

Cost: ~$0.30/1000 queries

🇫🇷 5. MISTRAL

How to get API key:

  1. Visit: https://console.mistral.ai/
  2. Create account
  3. Go to: API Keys
  4. Generate new key
  5. Copy the key

Cost: ~$0.70/1000 queries

🦙 6. LLAMA (Together.xyz)

How to get API key:

  1. Visit: https://api.together.xyz/
  2. Sign up for account
  3. Go to: Settings → API Keys
  4. Create new key
  5. Copy the key

Cost: ~$0.80/1000 queries

💎 7. GEMINI (Google)

How to get API key:

  1. Visit: https://makersuite.google.com/app/apikey
  2. Sign in with Google account
  3. Click: Create API key
  4. Copy the key

Cost: FREE quota, then ~$0.50/1000 queries

Configuration Guide

EA Parameters Explained:

🔑 AI API Settings

Claude_API_Key = "sk-ant-your-key-here" OpenAI_API_Key = "sk-your-openai-key" Mistral_API_Key = "your-mistral-key" Grok_API_Key = "your-grok-key" Deepseek_API_Key = "your-deepseek-key" Together_API_Key = "your-together-key" Gemini_API_Key = "your-gemini-key"

🤖 AI Selection

  • Tip: Start with Claude + OpenAI for best results
  • Enable more AIs as you get comfortable
  • Each AI costs money per query

💰 Model Selection (0=Cheapest)

  • 0 = Cheapest models (recommended for testing)
  • Higher numbers = More expensive but potentially better

🧠 Extended AI Query System

  • Extended_AI_Query = false - Configurable model-specific prompts
  • AI_Diversity_Mode = false - Maximizes AI response diversity

⚙️ Strategy Settings

Long_Term_Analysis = true // For swing trading

Mid_Term_Analysis = true // For day trading

Short_Term_Analysis = true // For scalping

🔥 Settings

Grid Trading Settings:

Enable_Auto_Trading = true // Master switch

Min_Signal_Strength = 0.3 // Minimum AI signal to trade

Base_Lot_Size = 0.01 // Starting position

size Max_Simultaneous_Grids = 2 // BUY and SELL grids

Grid_Type_Select = 1 // 0=Fixed, 1=Adaptive, 2=Volatility

Risk Management:

Max_Drawdown_Percent = 20.0 // Emergency stop at 20% drawdown

Daily_Loss_Limit = 500.0 // Stop trading after $500 loss

Grid_Profit_Target = 10.0 // Close grid at $10 profit


    📊 Understanding Signals:

    • Signal Range: -1.0 (Strong Sell) to +1.0 (Strong Buy)
    • Green: Bullish signals
    • Red: Bearish signals
    • Gray: Neutral/weak signals

    Usage

    🚀 Full Automation Setup:

    1. Complete setup first
    2. Configure grid parameters
    3. Set risk management limits
    4. Enable auto trading: Enable_Auto_Trading = true
    5. Monitor via dashboard

    🎮 Grid Trading System:

    How It Works:

    1. AI generates signalEA places first grid order
    2. Price moves against positionEA adds grid levels
    3. Price recoversGrid levels close in profit
    4. Rescue system activates if needed
    5. Process repeats automatically

    Grid Types:

    • Fixed Grid: Equal spacing between levels
    • Adaptive Grid: Spacing adjusts based on AI confidence
    • Volatility Grid: Spacing based on market volatility

    🛡️ Risk Management Features:

    Emergency Stops:

    • Daily Loss Limit: Stops trading after daily loss threshold
    • Maximum Drawdown: Emergency closure at drawdown limit
    • Position Size Limits: Prevents over-leveraging

    Grid Rescue System:

    • Automatically detects losing grid positions
    • Combines profitable positions with losing ones
    • Closes pairs when combined profit > threshold

    Troubleshooting

    ❌ Common Issues:

    "No AI responses" / "All APIs failed"

    Causes:

    • Missing WebRequest URLs
    • Invalid API keys
    • Insufficient API credits
    • Network connectivity issues

    Solutions:

    1. Verify WebRequest setup (most common issue)
    2. Check API keys are correct and active
    3. Verify API account credits/limits
    4. Test internet connection

    "Market Closed - AI Queries Paused"

    This is NORMAL behavior:

    • Saves API costs when markets closed
    • Crypto markets (BTC, ETH, etc.) are always "open"
    • Traditional forex/stocks pause queries on weekends

    Dashboard not updating

    Solutions:

    1. Refresh chart (F5)
    2. Remove and re-attach EA
    3. Check Expert Advisors are enabled

    Grid system not starting (Max)

    Check:

    • Enable_Auto_Trading = true
    • Signal strength > Min_Signal_Strength
    • Sufficient account balance
    • Market is open

    🔧 Performance Optimization:

    Reduce API Costs:

    • Use cheaper models (0=cheapest)
    • Increase Query_Interval_Minutes
    • Disable unused AI services
    • Trade only during active market hours

    Improve Signal Quality:

    • Enable multiple AI services for consensus
    • Adjust Min_Signal_Strength threshold
    • Use longer timeframes for more stable signals
    • Combine with technical analysis

    📞 Support:

    Before contacting support:

    1. ✅ Verify WebRequest URLs are added
    2. ✅ Check all API keys are valid
    3. ✅ Confirm sufficient API credits
    4. ✅ Review EA logs in MT5 Journal tab

    Include in support request:

    • MT5 Journal logs
    • EA parameter settings
    • Account details (broker, balance, leverage)
    • Specific error messages

    💡 Pro Tips:

    • Test on demo first with small grid sizes
    • Start with conservative risk settings
    • Monitor during first week of operation
    • Adjust parameters based on performance

    Cost Management:

    • Daily AI cost: ~$5-15 depending on timeframe and active AIs
    • Monthly estimate: ~$150-450 for full automation

    Remember: The system gets smarter as more AI models are enabled, but costs increase proportionally.


    🚀 Transform your trading with the collective intelligence of 7 leading AI models! 


    ⚠️ COMPREHENSIVE DISCLAIMER

    RISK WARNING & LEGAL DISCLAIMER


    🚨 TRADING RISK WARNING

    Trading foreign exchange, cryptocurrencies, and other financial instruments involves substantial risk and may not be suitable for all investors. You should carefully consider your financial situation and consult with financial advisors before using this software.

    KEY RISKS:

    • Past performance does not guarantee future results
    • You may lose some or all of your invested capital
    • AI predictions are not guaranteed to be accurate
    • Market conditions can change rapidly and unpredictably
    • Automated trading systems can malfunction or produce unexpected results

    🤖 AI TECHNOLOGY DISCLAIMER

    This software uses artificial intelligence models from third-party providers (Claude, OpenAI, Grok, etc.). Please note:

    • AI responses are not financial advice
    • AI models can produce incorrect or inconsistent results
    • API costs are separate and charged by AI providers
    • AI services may be temporarily unavailable
    • No guarantee of AI model accuracy or reliability

    💰 FINANCIAL DISCLAIMER

    NO GUARANTEE OF PROFITS:

    • This software does not guarantee profits or prevent losses
    • Results may vary significantly between users
    • Market conditions affect all trading strategies
    • Only trade with money you can afford to lose

    BACKTESTING LIMITATION:

    • Full functions of this product CANNOT be backtested due to live AI API queries. Only technical indicators are used in the backtest!
    • Demo testing is recommended before live trading
    • ⚠️Please note! The screenshots of the backtests only demonstrate the power of the technical signals combined with the grid system (without AI integration).


    🔧 TECHNICAL DISCLAIMER

    SOFTWARE DEPENDENCIES:

    • Requires stable internet connection for AI APIs
    • Dependent on third-party AI service availability
    • WebRequest must be properly configured in MT5
    • Valid API keys required for functionality
    • Software performance depends on broker and platform stability

    NO WARRANTY:

    • Software provided "as is" without warranty
    • Author not responsible for technical failures
    • User responsible for proper configuration and usage

    📊 VERSION-SPECIFIC DISCLAIMERS

    • Automated trading involves additional risks
    • User must monitor system performance
    • Emergency stops may not prevent all losses
    • Grid trading can amplify both profits and losses

    🌍 REGULATORY DISCLAIMER

    LEGAL COMPLIANCE:

    • User responsible for compliance with local regulations
    • Some jurisdictions restrict or prohibit automated trading
    • Verify legal status in your country before use
    • Author not responsible for regulatory violations

    📞 SUPPORT DISCLAIMER

    SUPPORT LIMITATIONS:

    • No guarantee of 24/7 support availability
    • Support does not include financial advice
    • Author not responsible for user trading decisions
    • Documentation and setup guides provided "as is"

    🛡️ LIABILITY LIMITATION

    The author, developer, and distributor of this software:

    • Disclaim all warranties, express or implied
    • Are not liable for any direct, indirect, or consequential damages
    • Are not responsible for trading losses or missed opportunities
    • Provide software for educational and analytical purposes

    USER ACKNOWLEDGMENT

    By purchasing and using this software, you acknowledge that:

    • You have read and understood all risks
    • You will not hold the author liable for trading results
    • You understand this is not financial advice
    • You will trade responsibly and within your means
    • You accept full responsibility for your trading decisions

    📅 EFFECTIVE DATE: This disclaimer is effective as of the date of purchase and use of the software.

    🔄 UPDATES: This disclaimer may be updated without notice. Users are responsible for reviewing current terms.


    💡 RECOMMENDATION: Start with demo trading, use small position sizes, and never risk more than you can afford to lose.

    🎯 REMEMBER: This software is a tool to assist in analysis and trading decisions. The final trading decisions and their consequences remain entirely your responsibility.