# Table of Contents - [Table of Contents](#table-of-contents) - [Profitable Expert Advisors (EAs)](#profitable-expert-advisors-eas) - [Available EAs](#available-eas) - [1. RSI Reversal Asian AUD/USD](#1-rsi-reversal-asian-audusd) - [2. RSI MidPoint Hijack XAU/USD](#2-rsi-midpoint-hijack-xauusd) - [3. RSI Reversal Asian EUR/USD](#3-rsi-reversal-asian-eurusd) - [4. RSI CrossOver Reversal XAU/USD](#4-rsi-crossover-reversal-xauusd) - [Strategy Rationale](#strategy-rationale) - [RSI Reversal Strategy](#rsi-reversal-strategy) - [RSI MidPoint Hijack Strategy](#rsi-midpoint-hijack-strategy) - [Profitability Factors](#profitability-factors) - [Usage](#usage) - [Disclaimer](#disclaimer) # Profitable Expert Advisors (EAs) This repository contains a collection of profitable Expert Advisors (EAs) designed for MetaTrader 5. Each EA implements different trading strategies optimized for specific currency pairs and market conditions. ## Available EAs ### 1. RSI Reversal Asian AUD/USD - **Strategy**: RSI-based reversal trading during Asian session - **Key Features**: - Uses RSI (Relative Strength Index) for entry and exit signals - Specifically optimized for AUD/USD pair during Asian session (00:00-08:00 UTC) - Implements strict risk management with configurable stop loss and take profit - Includes spread monitoring to avoid trading during high spread conditions - Features a visual panel showing real-time trading metrics **Core Parameters:** ```mql5 // RSI Settings RSIPeriod = 28; // RSI period OverboughtLevel = 64; // Overbought level OversoldLevel = 13; // Oversold level // Risk Management TakeProfitPips = 175; // Take profit in pips StopLossPips = 5; // Stop loss in pips MaxLotSize = 0.1; // Maximum lot size MaxSpread = 1000; // Maximum allowed spread in pips MaxDuration = 140; // Maximum trade duration in hours ``` **Test Balance Results:**