Solomon Anietie Sunday
Solomon Anietie Sunday
  • 情報
no
経験
1
製品
19
デモバージョン
0
ジョブ
0
シグナル
0
購読者
Manager, Trader and Developer において Self Employed
X
I am an experienced MQL5 developer, Author, Prop Trader, young CEO, specializing in the design, development, and optimization of Expert Advisors (EAs), custom indicators, and trading utilities/tools for MetaTrader 5.
Specialized in Trend-based, Indicator based, adaptive, risk management, clean, and well-documented code/strategies.
I value clear communication, learning, well thought out logic implementation, and stable results in real trading conditions.
Solomon Anietie Sunday
パブリッシュされた記事Building Your Personal Expert Advisor (Part 4): Risk Management III—Risk Models and Order Execution
Building Your Personal Expert Advisor (Part 4): Risk Management III—Risk Models and Order Execution

The EA now defines risk by percentage, fixed cash, or fixed lot and can measure percentage against balance or equity. It supports market, limit, and stop orders, sizes from the planned entry, and enforces spread‑aware stop minima. Additional safeguards include downward volume rounding, explicit handling when the minimum lot exceeds target risk, and pending‑order distance/expiry checks, organized under a Plan–Validate–Execute structure.

Solomon Anietie Sunday
パブリッシュされた記事Building Your Personal Expert Advisor (Part 3): Risk Management II—Margin and Allowable Risk
Building Your Personal Expert Advisor (Part 3): Risk Management II—Margin and Allowable Risk

Risk-based lot sizing can still exceed what free margin allows. The article adds a margin-aware cap using OrderCalcMargin(), an optional adaptive cap that scales with ACCOUNT MARGIN LEVEL, and a single pre-trade validation gate that unifies position limits, risk sizing, and margin checks. Readers get concrete code to prevent order rejections and over-committing margin, with clear logs when a trade is reduced or skipped.

Solomon Anietie Sunday
パブリッシュされた記事Building Your Personal Expert Advisor (Part 5): Risk Management IV—Basket Risk and Strategy-Specific Sizing
Building Your Personal Expert Advisor (Part 5): Risk Management IV—Basket Risk and Strategy-Specific Sizing

Part 5 moves risk control from single trades to a basket-level framework. The EA aggregates its own positions, computes volume‑weighted entry, floating P/L including swap, and used margin, then enforces limits on combined loss, margin, position count, and time underwater, while logging maximum adverse excursion. A companion mean‑reversion EA demonstrates target‑based sizing and caps on implied risk that remains hidden when trades are evaluated in isolation.

Solomon Anietie Sunday
パブリッシュされた記事Building Your Personal Expert Advisor (Part 2): Risk Management and Dynamic Lot Sizing
Building Your Personal Expert Advisor (Part 2): Risk Management and Dynamic Lot Sizing

This part implements risk-based position sizing for the EA. Lot size is derived from account balance, a chosen risk percent, and ATR-based stop distance, then confined and rounded to the broker's volume rules and minimum stop levels. An optional drawdown-aware layer reduces risk during equity declines. Readers get a reproducible sizing function that keeps per-trade risk consistent and orders acceptable to the server.

Solomon Anietie Sunday
パブリッシュされた記事Building a Divergence System (Part III): The Adaptive SuperTrend EA
Building a Divergence System (Part III): The Adaptive SuperTrend EA

The article implements a self-sufficient Adaptive SuperTrend EA with internal calculations on a selectable timeframe, avoiding external buffers and indicator files. It includes risk-based lot sizing, ATR stops, stepwise RR trailing, optional anti-repainting confirmation, and session control. Practitioners can reuse the structure for consistent new‑bar signal handling and broker‑compliant order validation.

1
Solomon Anietie Sunday
パブリッシュされた記事Building Your Personal Expert Advisor (Part 1): From Fragile Script to Working EA
Building Your Personal Expert Advisor (Part 1): From Fragile Script to Working EA

This article focuses on EA architecture rather than signal design. Starting with a flawed Moving Average crossover EA, we add new‑bar detection to prevent duplicate entries, Magic Number and position awareness, ATR‑based risk levels, and data and trade result validation, along with basic safeguards. You obtain a practical base to build and test advanced systems.

1
Solomon Anietie Sunday
パブリッシュされた記事Building a Divergence System (Part II): Adaptive SuperTrend Custom Indicator
Building a Divergence System (Part II): Adaptive SuperTrend Custom Indicator

The article upgrades SuperTrend by integrating a divergence engine (MPO4 or RSI) the dynamically reduces the ATR multiplier during weakening momentum. It covers the shrinking formula, non-repainting state propagation with dedicated buffers, and a step-by-step MQL5 implementation on the price chart. You will learn how to interpret arrows and line flips, adjust inputs, and apply the indicator for disciplined trailing and earlier confirmations.

Solomon Anietie Sunday
パブリッシュされた記事Building a Divergence System: Creating the MPO4 Custom Indicator
Building a Divergence System: Creating the MPO4 Custom Indicator

We introduce MPO4, a pressure-based oscillator that emphasizes the body and direction of candles in the context of current volatility. The article details its mathematics, normalization into a bounded range, and the EMA smoothing, then builds a pivot-driven divergence module designed not to repaint. You get complete MQL5 implementation and practical guidance for interpreting signals, including a comparison with RSI as an alternative source.

Solomon Anietie Sunday
パブリッシュされた記事Using the MQL5 Economic Calendar for News Filter (Part 4): Accurate Backtesting with Static Data
Using the MQL5 Economic Calendar for News Filter (Part 4): Accurate Backtesting with Static Data

This article implements a static, CSV-based news source for the Strategy Tester, so historical economic news events can be preloaded and queried during backtesting. It replaces live calendar calls in tester mode with a fast in-memory search, preserves the live logic for trading, and delivers deterministic, repeatable results with explicit control over included events, enabling reliable validation of news-aware filters, stop suspension, and trade-blocking rules.

2
Solomon Anietie Sunday
パブリッシュされた記事Using the MQL5 Economic Calendar for News Filter (Part 3): Surviving Terminal Restarts During News Window
Using the MQL5 Economic Calendar for News Filter (Part 3): Surviving Terminal Restarts During News Window

The article introduces a restart-safe storage model for news-time stop removal. Suspension state and original SL/TP per position are written to terminal global variables, reconstructed on OnInit, and cleaned after restoration. This lets the EA resume an active suspension window after recompiles or restarts and restore stops only when the news window ends.

1
Solomon Anietie Sunday
パブリッシュされた記事MQL5経済指標カレンダーを用いたニュースフィルタリング(第2回):ニュースリリース中に管理ポジションを停止する
MQL5経済指標カレンダーを用いたニュースフィルタリング(第2回):ニュースリリース中に管理ポジションを停止する

第2回では、ニュースフィルタを拡張し、ニュースイベント中に既存のポジションを保護します。取引を決済する代わりに、ストップロス(SL)およびテイクプロフィット(TP)を一時的に解除し、それらの値をメモリ上へ安全に保存します。ニュースウィンドウが終了すると、ストップは決定論的に復元されます。この際、価格がすでに元の水準を超えている場合には、その値を調整するとともに、ブローカーの最小ストップ距離ルールを遵守します。その結果、エントリーロジックへ干渉せず取引構造の整合性を維持し、ボラティリティの高い状況でもEAが取引を制御できる仕組みを実現します。

Philip Kym Sang Nelson - Retail Trading Realities LTD
Philip Kym Sang Nelson 2026.04.07
Magnificent work. I shared to Twitter and gave you a @ mention.
Solomon Anietie Sunday
パブリッシュされた記事MQL5経済指標カレンダーを用いたニュースフィルタリング(第1回):MQL5におけるニュース前・ニュース後ウィンドウの実装
MQL5経済指標カレンダーを用いたニュースフィルタリング(第1回):MQL5におけるニュース前・ニュース後ウィンドウの実装

本システムでは、Webリクエストや外部DLLを使用せず、MQL5のみでカレンダー連動型ニュースフィルタを構築します。第1回は、経済イベントの読み込みとキャッシュ処理、通貨を基準とした銘柄へのイベント紐付け、重要度レベルによるフィルタリング、ニュース前後の監視時間(ウィンドウ)の設定、そしてニュース発生中の新規トレード制限について解説します。また、必要に応じてニュース前に保有ポジションを決済する機能も実装します。この結果、不要な取引停止を減らし、ボラティリティが高まる局面でのエントリーを保護する、設定可能でプロップファーム向けにも適したリスク管理機能を実現できます。

Solomon Anietie Sunday パブリッシュされたプロダクト

The Harbinger SuperTrend Lite 重要なお知らせ: アプリを購入後、MQL5のメッセージ機能で私にメッセージを送ってください。このトレーディングボットをゼロから使用するために必要なインストールマニュアルとユーザーガイドをお送りします。   概要 Harbinger SuperTrend Liteは、リペイント(塗り直し)のないSuperTrend実行エンジンと、RSIベースの市場レジーム(相場環境)フィルターを組み合わせた高度な自動売買エキスパートアドバイザー(EA)です。どの時間足でもフィルタリングが可能です。   このEAは、RSIとその他の内部フィルターを使用して、強気および弱気の条件を判断し、純粋にトレンド方向にのみ取引を行います。 ポジションサイズは、入力された1トレードあたりのリスク(%)に基づいて自動的に計算され、すべての銘柄と口座サイズで一貫したリスク管理を保証します。 このLiteバージョンは、クリーンで信頼性が高く、成熟したトレード実行に焦点を当てています。  

Solomon Anietie Sunday
MQL5.communityに登録されました