Vincent Vandeyua Orya / Profile
- Information
no
experience
|
2
products
|
8
demo versions
|
0
jobs
|
0
signals
|
0
subscribers
|
Greetings fellow traders,
After many years of intensive study and direct engagement with the Forex market, my journey has been one of continuous learning and evolution. Initially, I opted for immediate real-market participation over demo accounts, a path that, while incurring early capital setbacks, provided invaluable real-world insights into the psychological disciplines crucial for success: effectively managing greed, overcoming the Fear of Missing Out (FOMO), and cultivating the perseverance essential for sustained profitability.
This foundational experience culminated in the development of a highly effective and remarkably straightforward manual trading strategy, designed for ease of adoption and consistently demonstrating a win rate of up to 87%. While this strategy proved consistently profitable for several years, my inherent drive for innovation prompted me to explore its automation. Rather than outsourcing this critical step, I committed myself to mastering MQL5 programming. Leveraging the comprehensive resources of MQL5 Programming for Traders, I rapidly gained proficiency, successfully developing functional MQL5 Classes, Scripts, and Expert Advisors (EAs) within a matter of months.
The pinnacle of this development is "ISHEGUVE," a proprietary Expert Advisor meticulously crafted from first principles, drawing upon the robust capabilities of the MQL5 Standard Libraries and the knowledge acquired from MQL5Book. I am immensely proud of this creation and its performance.
Although my MQL5.com account was established many years ago, my primary focus was elsewhere until my recent account verification. I am now fully committed to actively participating in this vibrant trading community, engaging with the marketplace, and offering my expertise through freelance opportunities.
I invite you to explore my products and services, and I look forward to contributing to our shared success.

ISHEGUVE SMART TRSDER's Key Features at a Glance, Backed by Performance:
📈 Intelligent Trade Entry & Exit:
Advanced Pattern Recognition: Utilizes a comprehensive suite of candlestick patterns including Morning Star, Morning Doji, Hammer, Engulfing, Harami, Piercing Line, Meeting Lines, Three White Soldiers, Three Black Crows, and Pin Bars.
Multi-Indicator Confirmation: Signals are confirmed by RSI (Relative Strength Index) for overbought/oversold conditions and SMA (Simple Moving Average) for trend direction, ensuring high-probability setups.
Bulls/Bears Power Integration: Further validates trade signals with the strength of market participants.
RSI-Based Exits: Dynamically closes positions when RSI indicates reversal or continuation levels are met, ensuring timely profit-taking or loss cutting.
💰 Sophisticated Money Management:
Risk-Based Lot Sizing: Automatically calculates optimal lot size based on your defined maximum risk percentage per trade (e.g., 1.0%) and Stop Loss in account currency (e.g., 20.0 USD).
Adaptive Lot Adjustment: Implements a unique strategy to decrease lot size (e.g., by 0.8 factor) after a configurable number of consecutive losses (e.g., 2 losses), and resets on a win, protecting your capital. This proactive approach helps mitigate prolonged losing streaks, a key factor in the high Short Trades won % (79.39%) and Long Trades won % (93.30%).
Configurable Risk-Reward Ratio: Set your desired profit target based on your Stop Loss (e.g., 1.5 Risk-Reward).
🛡 Dynamic Position Control:
Currency-Based Trailing Stop: Protects profits by trailing your Stop Loss based on currency values (e.g., starts trailing after $50.0 profit, steps by $10.0, with a $5.0 offset), locking in gains as the market moves in your favor.
Pending Order Management: Places Buy Stop/Sell Stop orders with a configurable offset (e.g., 10 points) from pattern highs/lows.
Time-Based Position Expiry: Optionally closes positions after a specified number of bars (set to 0 for disabled by default, but customizable).
Session-Based Trading: Automatically ceases new order placement 30 minutes before your defined session end time (e.g., 23:55) and closes all open positions 10 minutes before, ensuring you avoid volatile closing moments.
Slippage Control: Minimizes unexpected price deviations with a maximum slippage setting (e.g., 10 points).
Why Choose ISHEGUVE SMART TRSDER?
Proven Performance: The backtest results speak for themselves, showcasing consistent profitability and robust risk management. The Maximum Drawdown Relative of 8.86% (8.75%) and Maximum Drawdown Absolute of 2,055.27 (3.16%) are remarkably low for such substantial gains, highlighting the EA's capital protection capabilities.
Automated Discipline: Removes emotional trading by adhering strictly to predefined rules, leading to more consistent and objective trading decisions.
Capital Protection: Advanced money management, adaptive lot adjustment, and trailing stops are meticulously designed to safeguard your trading account, as demonstrated by the low drawdowns.
Customizable Strategy: Adjust key parameters like RSI levels, MA periods, risk percentages, and trailing stop settings to fit your unique trading style and evolving market conditions.
Comprehensive Error Handling: Built-in mechanisms to detect and report potential issues directly on your chart, keeping you informed.
The scatter plot (as seen in SressTestIsheguveSyntheticsM1ascket02.png ) illustrates a positive correlation between profit and drawdown, confirming the EA's ability to generate significant profits while maintaining controlled risk. The average positive trade of 298.42 significantly outweighs the average negative trade of -205.83, contributing to the impressive Expected Payoff of 7.37.
Take control of your trading with ISHEGUVE SMART TRSDER – your intelligent partner for consistent and disciplined market execution and the future of forex!

Unlock Your Trading Potential with the ISHEGUVE SMART TRSDER ! Are you looking for a powerful, intelligent, and customizable trading solution that delivers tangible results? ISHEGUVE SMART TRSDER is engineered to bring unparalleled precision and discipline to your MetaTrader 5 trading, leveraging advanced technical analysis and robust money management, as evidenced by its impressive backtesting performance. Experience the Future of Forex Trading with ISHEGUVE SMART TRSDER: The provided

I have a collection of code structures, very informative and easy to manipulate. They're primarily helpers for different functions such as System Control functions, Candlesticks Patterns Detection & Confirmation, signal generation logics as wellas trading logics and Chart customization.
Please feel free to approach me for any of these.
For Example: //--- Helper for Dark Cloud Cover pattern (moved from Isheguvesignals class)bool IsDarkCloudCover(int shift, int avgBodyPeriod = 20, int trendLookbackPeriod = 5) { if(!UpdateRates()) return false; if(::Bars(_Symbol, _Period) < shift + 1 || ::Bars(_Symbol, _Period) < avgBodyPeriod + 1 || ::Bars(_Symbol, _Period) < trendLookbackPeriod + shift + 1) return false;
double avgBody = AvgBody(avgBodyPeriod); if(avgBody <= 0.0000001) return false;
bool cond1_bullish_body = IsBullish(shift + 1) && (GetBody(shift + 1) > avgBody); bool cond2_bearish = IsBearish(shift); bool cond3_close_lower = GetClose(shift) < GetClose(shift + 1); bool cond4_close_within_body = GetClose(shift) > GetOpen(shift + 1); bool cond5_uptrend = MidOpenClose(shift + 1) > CloseAvg(trendLookbackPeriod, shift + 1); bool cond6_gap_up = GetOpen(shift) > GetHigh(shift + 1);
return cond1_bullish_body && cond2_bearish && cond3_close_lower && cond4_close_within_body && cond5_uptrend && cond6_gap_up; }
//--- Helper for Piercing Line pattern (moved from Isheguvesignals class)bool IsPiercingLine(int shift, int avgBodyPeriod = 20, int trendLookbackPeriod = 5) { if(!UpdateRates()) return false; if(::Bars(_Symbol, _Period) < shift + 1 || ::Bars(_Symbol, _Period) < avgBodyPeriod + 1 || ::Bars(_Symbol, _Period) < trendLookbackPeriod + shift + 1) return false;
double avgBody = AvgBody(avgBodyPeriod); if(avgBody <= 0.0000001) return false;
bool cond1_bullish_body = IsBullish(shift) && (GetBody(shift) > avgBody); bool cond2_bearish_body = IsBearish(shift + 1) && (GetBody(shift + 1) > avgBody); bool cond3_close_higher = GetClose(shift) > GetClose(shift + 1); bool cond4_close_within_body = GetClose(shift) < GetOpen(shift + 1); bool cond5_downtrend = MidOpenClose(shift + 1) < CloseAvg(trendLookbackPeriod, shift + 1); bool cond6_gap_down = GetOpen(shift) < GetLow(shift + 0);
double prev_body_range = GetOpen(shift + 1) - GetClose(shift + 1); bool cond7_piercing_level = GetClose(shift) > (GetClose(shift + 1) + prev_body_range * 0.5);
return cond1_bullish_body && cond2_bearish_body && cond3_close_higher && cond4_close_within_body && cond5_downtrend && cond6_gap_down && cond7_piercing_level; }

🚀 Unleash Your Trading Potential with IsheguveScalper EA! 🚀 The Isheguve Expert Advisor is a sophisticated, fully automated trading solution designed to identify high-probability trade setups and manage your positions with precision. Built on robust technical analysis and smart money management principles, Isheguve aims to bring consistency and discipline to your trading journey. 📈 What Makes IsheguveScalper Stand Out? 1. Intelligent Money Management & Risk Control: Dynamic Lot Sizing


