Prism Candle Forge

Prism Candle Forge — MT4用ローソク足パターン認識エンジン

Prism Candle Forge は、ATR加重幾何解析を用いて20種類以上の酒田五法・ローソク足パターンを検出・検証するネイティブMQL4ライブラリです。パターンの識別、方向性の信頼度スコアリング、ローソク足形態分類、トレンドコンテキスト検証を、Expert Advisor、インジケーター、スクリプトから呼び出し可能な8つのエクスポート関数を通じて提供します。DLL不使用、外部依存性ゼロ、純粋なMQL4計算エンジンです。

コンパイル済みバイナリ (Prism_Candle_Forge.ex4) として配布されます。本ドキュメントは完全なAPIリファレンスです。

インストール手順

  1. MQL5 Market から Prism_Candle_Forge.ex4 をダウンロードします。
  2. ファイルを次のフォルダに配置します: MQL4/Libraries/
  3. 以下の #import ブロックを .mq4 ソースファイルに追加します。
  4. EAまたはインジケーターをコンパイルします。これで8つの関数すべてが利用可能になります。

インポート宣言(コピー&ペースト用)

#import "Prism_Candle_Forge.ex4"
   int    PCF_DetectPattern(const double &open[], const double &high[], const double &low[], const double &close[],
                             int bar_index, double atr_value, string &pattern_name, double &confidence, int &direction);
   int    PCF_ScanMultiPattern(const double &open[], const double &high[], const double &low[], const double &close[],
                                int bar_index, double atr_value, string &pattern_names[], double &confidences[],
                                int &directions[], int max_patterns);
   double PCF_PatternStrength(const double &open[], const double &high[], const double &low[], const double &close[],
                               int bar_index, double atr_value);
   int    PCF_CandleType(double open_price, double high_price, double low_price, double close_price, double atr_value);
   double PCF_BodyRatio(double open_price, double high_price, double low_price, double close_price);
   double PCF_WickBalance(double open_price, double high_price, double low_price, double close_price);
   int    PCF_IsTrendConfirmed(const double &close[], int bar_index, int lookback_period, double min_slope_pips);
   int    PCF_GetVersion();
#import

APIリファレンス

PCF_DetectPattern

指定したバーにおける最強のローソク足パターンを検出します。Hammer、Engulfing、Morning/Evening Star、Doji各種、Piercing Line、Dark Cloud Cover、Three White Soldiers、Three Black Crows、Harami、Tweezer、Marubozu、Hanging Man、Shooting Star を含む20以上のパターンに対応しています。

パラメータ:

  • open[], high[], low[], close[]: チャートのOHLC価格配列。
  • bar_index: 分析対象バーのインデックス。配列の有効範囲内である必要があります。
  • atr_value: 適応型しきい値スケーリング用の現在のATR値。正の値である必要があります。
  • pattern_name (by ref): 検出された最強パターンの名称を受け取る変数(例: "Bullish Engulfing")。
  • confidence (by ref): パターンの信頼度スコア。0.0(低)〜 1.0(典型的な教科書パターン)。
  • direction (by ref): +1(強気/買いシグナル)、-1(弱気/売りシグナル)。

戻り値: このバーで検出されたパターン数(検出なしの場合は0)。信頼度が最も高いパターンの情報が出力パラメータに設定されます。

PCF_ScanMultiPattern

単一のバーで検出可能なすべてのローソク足パターンをスキャンし、信頼度の降順で複数の結果を返します。

パラメータ:

  • open[], high[], low[], close[]: OHLC価格配列。
  • bar_index: 分析対象のバー。
  • atr_value: 適応型しきい値用ATR値。
  • pattern_names[] (by ref): パターン名を受け取る配列。内部で最大 max_patterns まで自動リサイズされます。
  • confidences[] (by ref): 信頼度スコアを受け取る配列。
  • directions[] (by ref): 方向性を受け取る配列 (+1/-1)。
  • max_patterns: 返される結果の最大件数(例: 5)。

戻り値: 実際に検出されたパターン数(0 〜 max_patterns)。

PCF_PatternStrength

バーで検出されたすべてのパターンを統合し、総合的な方向性圧力スコアを算出します。

パラメータ:

  • open[], high[], low[], close[]: OHLC配列。
  • bar_index: 対象バーのインデックス。
  • atr_value: スケーリング用ATR値。

戻り値: -100.0(極度の弱気)〜 +100.0(極度の強気)のスコア。0は中立を示します。

PCF_CandleType

ATRに対する実体とヒゲの比率に基づいて、単一のローソク足を8種類の形態タイプのいずれかに分類します。

パラメータ:

  • open_price, high_price, low_price, close_price: 単一ローソク足のOHLC値。
  • atr_value: 相対サイズ判定用ATR値。0以下の場合は絶対しきい値が使用されます。

戻り値: 1=Bull Marubozu, 2=Bear Marubozu, 3=Hammer, 4=Inverted Hammer, 5=Doji, 6=Spinning Top, 7=Standard Bull, 8=Standard Bear.

PCF_BodyRatio

ローソク足の実体対レンジ(高値-安値)比率を計算します。ローソク足の重要性のフィルタリングに役立ちます。

パラメータ:

  • open_price, high_price, low_price, close_price: 単一ローソク足のOHLC。

戻り値: 0.0(実体なし / doji)〜 1.0(フル実体 / marubozu)の比率。レンジがゼロの場合は0.0を返します。

PCF_WickBalance

ローソク足のヒゲの方向性非対称度を測定します。

パラメータ:

  • open_price, high_price, low_price, close_price: 単一ローソク足のOHLC。

戻り値: -1.0(下ヒゲのみ、強気反発)〜 +1.0(上ヒゲのみ、弱気反発)。0.0は対称なヒゲ。総ヒゲ長がゼロの場合は0.0を返します。

PCF_IsTrendConfirmed

ルックバック期間における線形回帰の傾きを用いてトレンド環境を検証します。支配的なトレンドに沿ったパターンのみを厳選するフィルターとして活用できます。

パラメータ:

  • close[]: 終値配列。
  • bar_index: ルックバック期間の開始バー。
  • lookback_period: 評価するバー数。最小5。配列の境界内に制限されます。
  • min_slope_pips: トレンドと判定するための最小絶対傾き(pips単位)。

戻り値: +1(上昇トレンド確認)、-1(下降トレンド確認)、0(レンジ・横ばい、またはデータ不足)。

PCF_GetVersion

ランタイム時の互換性チェック用として、ライブラリのバージョンを整数で返します。

戻り値: 100(バージョン 1.00 を表します)。

実践的な組み込み例

#property strict
#import "Prism_Candle_Forge.ex4"
   int    PCF_DetectPattern(const double &open[], const double &high[], const double &low[], const double &close[],
                             int bar_index, double atr_value, string &pattern_name, double &confidence, int &direction);
   double PCF_PatternStrength(const double &open[], const double &high[], const double &low[], const double &close[],
                               int bar_index, double atr_value);
   int    PCF_CandleType(double open_price, double high_price, double low_price, double close_price, double atr_value);
   int    PCF_GetVersion();
#import

void OnTick()
{
   double o[], h[], l[], c[];
   ArrayCopyRates(o, Symbol(), 0);
   int copied = CopyOpen(Symbol(), 0, 0, 100, o);
   CopyHigh(Symbol(), 0, 0, 100, h);
   CopyLow(Symbol(), 0, 0, 100, l);
   CopyClose(Symbol(), 0, 0, 100, c);

   double atr = iATR(Symbol(), 0, 14, 1);

   string pat_name;
   double conf;
   int dir;
   int count = PCF_DetectPattern(o, h, l, c, 1, atr, pat_name, conf, dir);

   if(count > 0)
      Print("Pattern: ", pat_name, " Confidence: ", conf, " Direction: ", dir);

   double strength = PCF_PatternStrength(o, h, l, c, 1, atr);
   Print("Aggregate Strength: ", strength);

   int candle = PCF_CandleType(o[1], h[1], l[1], c[1], atr);
   Print("Candle Type: ", candle);
}

アーキテクチャ

全8関数はステートレス(stateless)で完全に独立しています。各呼び出しは渡されたOHLC配列に対して純粋な幾何学的・統計的解析を実行し、永続的な状態、チャートオブジェクト、タイマー、ネットワークアクセスは一切保持・使用しません。ATR相対しきい値により、パラメータを再調整することなく、すべての銘柄(為替、貴金属、株価指数、暗号資産)およびすべての時間枠で高精度なパターン検出を実現します。

互換性

  • プラットフォーム: MetaTrader 4 専用
  • ストラテジーテスター: 完全対応(バックテストおよび最適化)
  • 外部依存性: なし(DLL完全不使用)
  • チャートオブジェクトなし、タイマーなし、描画負荷ゼロ — 純粋な計算エンジン
  • スレッドセーフ: 全関数がステートレス設計。複数チャートでの同時稼働も安全

おすすめのプロダクト
MT4/5通用交易库(  一份代码通用4和5 ) #ifdef __MQL5__      #define KOD_TICKET ulong      #define KOD_MAGIC   long #else        #define KOD_TICKET long      #define KOD_MAGIC   int #endif class ODLIST; #import "K Trade Lib Pro 4.ex4"       //祝有个美好开始,运行首行加入    void StartGood() ;    //简单开单    long OrderOpen( int type, double volume, int magic, string symbol= "" , string comment= "" , double opprice= 0 , double sl= 0 , double tp= 0 , int expiration= 0 , bool slsetmode= false , bool tpsetmode= false );    //复杂开单
El indicador "MR BEAST ALERTAS DE LIQUIDEZ" es una herramienta avanzada diseñada para proporcionar señales y alertas sobre la liquidez del mercado basándose en una serie de indicadores técnicos y análisis de tendencias. Ideal para traders que buscan oportunidades de trading en función de la dinámica de precios y los niveles de volatilidad, este indicador ofrece una visualización clara y detallada en la ventana del gráfico de MetaTrader. Características Principales: Canal ATR Adaptativo: Calcula
Introducing "TG Trade Service Manager" — your all-in-one solution for seamless trade management in both MQL4 and MQL5 environments. With a focus on speed, reliability, and convenience, this powerful library simplifies the complexities of trade execution and management, empowering developers with a single interface for enhanced efficiency. Metatrader5 Version |  All Products  |  Contact Key Features: Unified Interface : TG Trade Service Manager" provides a unified interface for   MQL4   and   MQ
Noize Absorption Index - is the manual trading system that measures the difference of pressure between bears forces and bulls forces. Green line - is a noize free index that showing curent situation. Zero value of index shows totally choppy/flat market.Values above zero level shows how powerfull bullish wave is and values below zero measures bearish forces.Up arrow appears on bearish market when it's ready to reverse, dn arrow appears on weak bullish market, as a result of reverse expectation. S
インディケータは現在のクオートを作成し、これを過去のものと比較して、これに基づいて価格変動予測を行います。インジケータには、目的の日付にすばやく移動するためのテキスト フィールドがあります。 オプション: シンボル - インジケーターが表示するシンボルの選択; SymbolPeriod - 指標がデータを取る期間の選択; IndicatorColor - インジケータの色; HorisontalShift - 指定されたバー数だけインディケータによって描画されたクオートのシフト; Inverse - true は引用符を逆にします。false - 元のビュー。 ChartVerticalShiftStep - チャートを垂直方向にシフトします (キーボードの上下矢印)。 次は日付を入力できるテキストフィールドの設定で、「Enter」を押すとすぐにジャンプできます。
これはほぼ間違いなく、MetaTraderプラットフォームで見つけることができる最も完全な調和価格形成自動認識インジケーターです。 19種類のパターンを検出し、フィボナッチプロジェクションをあなたと同じように真剣に受け止め、潜在的逆転ゾーン(PRZ)を表示し、適切なストップロスとテイクプロフィットレベルを見つけます。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 19の異なる調和価格形成を検出します プライマリ、派生および補完フィボナッチ投影(PRZ)をプロットします 過去の価格行動を評価し、過去のすべてのパターンを表示します この指標は、独自の品質とパフォーマンスを分析します 適切なストップロスとテイクプロフィットのレベルを表示します ブレイクアウトを使用して適切な取引を通知します すべてのパターン比をグラフにプロットします 電子メール/音声/視覚アラートを実装します スコット・M・カーニーの本に着想を得て、この指標は最も純粋で急を要するトレーダーのニーズを満たすように設計されています。ただし、トレードを容易にする
PipFinite Exit EDGE
Karlo Wilson Vendiola
4.83 (115)
Did You Have A Profitable Trade But Suddenly Reversed? In a solid strategy, exiting a trade is equally important as entering. Exit EDGE helps maximize your current trade profit and avoid turning winning trades to losers. Never Miss An Exit Signal Again Monitor all pairs and timeframes in just 1 chart www.mql5.com/en/blogs/post/726558 How To Trade You can close your open trades as soon as you receive a signal Close your Buy orders if you receive an Exit Buy Signal. Close your Sell orders if
This is the complete REX package. It consists of the lite, pro and ULTRA version.  Perfect for beginners and intermediates. REX complete is 100% non repaint. The strategy is based on a mix of different strategies, statistics, including pivot points, oscillators and patterns.  As the trading idea consists of a variety of some classic indicators like Momentum, Williams Percent Range, CCI, Force Index, WPR, DeMarker, CCI, RSI and Stochastic, it is clear that the fundamental indicators have being u
これは、キャンドルの終値を予測する指標です。 このインジケータは、主にD1チャートでの使用を目的としていますが. この指標は、従来の外国為替取引とバイナリオプション取引の両方に適しています。 インジケーターは、スタンドアロンのトレーディングシステムとして使用することも、既存のトレーディングシステムへの追加として機能させることもできます。 このインジケーターは、現在のキャンドルを分析し、キャンドル自体の内部の特定の強度係数と、前のキャンドルのパラメーターを計算します。 したがって、この指標は、市場の動きのさらなる方向性と現在のキャンドルの終値を予測します。 この方法のおかげで、この指標は、短期の日中取引だけでなく、中期および長期の取引にも適しています。 インジケーターを使用すると、市場の状況の分析中にインジケーターが生成する潜在的な信号の数を設定できます。 インジケーターの設定には、このための特別なパラメーターがあります。 また、インジケーターは、チャート上のメッセージの形式で、電子メールで、およびPUSH通知の形式で、新しい信号について通知することができます。 購入後は必ず私に書いて
フィボナッチリトレースと拡張ラインツール DiNapoliポイント取引方法とゴールデンセクション取引を使用するトレーダーにとって理想的なMT4プラットフォームのフィボナッチリトレースと拡張ラインツール 主な特長: あなたはフィボナッチリトレースメントの複数のセットを直接描くことができ、重要なリターンポイント間の関係は一目瞭然です。 2.フィボナッチ拡張を描画することができます。 3.フィボナッチフォールドバックとラインの延長は、簡単な観察と数値表示のために左右に動かすことができます。 4.チャートは非常に爽やかな 5.数字キーでサイクルを切り替えることができます。 ファンクションキー: 1。 [戻るを押す、要求に応じて描画する、最大8つのグループにする 2。拡張]を描くには[押す] 3。 \を押すと、現在のサイクルの下にあるすべての拡張機能と折り畳みが削除されます 4。フォールドバックを移動して削除して展開する (1)最初のフォールドバックセットのF5行をクリックします。 一度クリックすると(黄色に変わります)、キーボードのDeleteキーを押すと、フォーカ
VR Cub
Vladimir Pastushak
VR Cub は、質の高いエントリーポイントを獲得するためのインジケーターです。このインジケーターは、数学的計算を容易にし、ポジションへのエントリーポイントの検索を簡素化するために開発されました。このインジケーターが作成されたトレーディング戦略は、長年にわたってその有効性が証明されてきました。取引戦略のシンプルさはその大きな利点であり、初心者のトレーダーでもうまく取引することができます。 VR Cub はポジション開始ポイントとテイクプロフィットとストップロスのターゲットレベルを計算し、効率と使いやすさを大幅に向上させます。取引の簡単なルールを理解するには、以下の戦略を使用した取引のスクリーンショットを見てください。 設定、設定ファイル、デモ版、説明書、問題解決方法は、以下から入手できます。 [ブログ] レビューを読んだり書いたりすることができます。 [リンク] のバージョン [MetaTrader 5] エントリーポイントの計算ルール ポジションをオープンする エントリーポイントを計算するには、VR Cub ツールを最後の高値から最後の安値までストレッチする必要があります。 最初
新たな王者の登場 ― インジケーター + 注文管理機能(TP1 + TP2 + TP3)搭載(完全トレーディングシステム) このインジケーターは、高度なトレーディング戦略、カスタマイズ可能な注文管理システム、そしてエンベロープ拡張を活用した平均回帰(Mean Reversion)システムを組み合わせた総合トレーディングソリューションです。さらに、RSIをはじめとする複数のインテリジェントな確認フィルターを搭載し、高確率の反転ポイントを捉えるBUY(買い)およびSELL(売り)シグナルを提供します。 本インジケーターはリペイントしません(No Repaint)。 単にエントリーのタイミングを学ぶだけでなく、複数ポジションを効率的に管理し、既存の利益ポジションを活用して損失ポジションをカバーする実践的な資金管理手法も身につけることができます。 M5(5分足)専用に開発・最適化されており、ほぼすべての通貨ペアおよび取引銘柄で優れたパフォーマンスを発揮します。また、バックテストにも対応しており、さまざまな市場環境におけるシステムの有効性を検証することが可能です。 インジケーターは明確なロング(
自動ブレークイーブンレベル この   ユーティリティを   使用 すると、   取引が所望の利益に達したときに自動的にSLを移動する機能を有効にできます。 特に   短期   トレーダー   にとって重要です。   オフセットオプションも利用可能です:一部の利益を保護できます。 多機能ユーティリティ : 66以上の機能、このツールを含む  |   質問がある場合は連絡してください   |   MT5バージョン 自動ブレークイーブン機能の有効化プロセス: 1.   シンボルまたは取引を選択   Auto BE機能を有効にする対象: 現在の   [Symbol]   / すべての取引   [ALL]   / または特定の取引   [Ticket] . [Symbol]または[ALL]ルールに加えて - 特定の取引に個別のルールを設定できます, チケット番号により: 個別の[Ticket]ルールが優先されます. 2. Auto BEを有効にする   取引タイプ   を選択: [ALL]: すべての有効な取引; [Longs]: 買い取引のみ; [Shorts]: 売り取引のみ; 3.  
Introduction It is common practice for professional trades to hide their stop loss / take profit from their brokers. Either from keeping their strategy to the themselves or from the fear that their broker works against them. Using this indicator, the stop loss / take profit points will be drawn on the product chart using the bid price. So, you can see exactly when the price is hit and close it manually.  Usage Once attached to the chart, the indicator scans the open orders to attach lines for t
This is an indicator that allows displaying three currency pairs in one window. Input Parameters: Symbol1 - first currency pair. symbol1mirrior - mirror display of the first currency pair. s1color - color of the first currency pair. Symbol2 - second currency pair. symbol2mirrior - mirror display of the second currency pair. Symbol3  - third currency pair. symbol3mirrior -  mirror display of the third currency pair. Symbo4  - fourth currency pair. symbol4mirrior - mirror display of the fourth cur
The indicator shows which trading pairs, strategies, robots and signals that you use are profitable and which are not. The statistic of trades and balance graph are displayed in the account currency and pips - to switch simply click on the graph. button "$"(top left) - minimize/expand and move the indicator panel button ">"(bottom right) - stretching and resetting to the original size Statistic of trades 1 line - account balance, current profit and lot of open trades; 2 line - the number of all
```text IndexRaider Libraryは、IndexRaiderエンジンを呼び出し可能な関数として提供します。流動性スイープ(SFP)の検出、H4トレンドバイアス、Fair Value Gapの確認、そしてIndexRaider製品シリーズ全体で使用されているリスクベースのポジションサイズ計算機能を利用できます。同じルールを使用して、自分自身のExpert Advisor、インジケーター、またはパネルを構築できます。ライブラリが分析を行い、実際の判断はあなたのプログラムが行います。 エクスポートされる機能 - IXR_Drive(symbol) — H1データを使用して、各シンボルの状態マシンを進行させます。tickごと、またはタイマーから呼び出すことができます。確定したH1バーごとに1回だけ処理され、現在のフェーズを返します:   0 = 待機中   1 = スイープ検出済み / 確認待ち   2 = セットアップ有効化 - IXR_Setup(symbol, direction, entry, sl, tp) — フェーズが2の間、有効化されたセットアップの
A technical indicator that calculates its readings on trading volumes. In the form of a histogram, it shows the accumulation of the strength of the movement of the trading instrument. It has independent calculation systems for bullish and bearish directions. Works on any trading instruments and time frames. Can complement any trading system. The indicator does not redraw its values, the signals appear on the current candle. It is easy to use and does not load the chart, does not require addition
Alpha Trend signは私たちの取引システムを検証し、取引信号を明確に提示し、信号がドリフトすることはありません。 主な機能: •市場が活況を示している地域に応じて、指標に基づいて現在の相場がトレンド相場に属しているか、それとも揺れ相場に属しているかを直感的に判断することができる。 そして、指標の指示矢印に基づいて市場に切り込み、緑の矢印は購入を提示し、赤の矢印は販売を提示する。 •小周期変動による頻繁な取引信号の発生を回避するために、5分以上の時間周期で取引を行うことを推奨します。 •最適な取引タイミングを逃さないために、シグナルプロンプトをオンにすることもできます。 •本指標はトレンド相場をよく予測するだけでなく、幅広振動相場でも利益を得ることができる。 •本指標は大道至簡の原則に基づいており、異なる段階のトレーダーが使用するのに適している。 注意事項: •Alpha Trend signには明確な入退場信号があり、損失を与えないように逆位相操作を提案しない。 •Alpha Trend signは特に成熟した指標であり、デルのチー
インジケーターは、古典的なガンの角度と同様に、(特定のキャンドルをクリックした後)トレンドラインのファンを構築します。インジケーターの特徴は、固定スケールで角度を作成するだけでなく、特定の数のバーの平均価格を使用することです(オプション)。 インジケーターの角度の平均価格を計算する方法は2つあります(オプション)。 1)高値から安値への(特定の数のバーの)平均価格の動きの計算。 2)平均価格の計算はオープンからクローズに移動します。 オプション: 1.Method -コーナーを構築する方法。 2. FixedScale-固定スケール(メソッドでFixed_Scaleが選択されている場合)。 3.SecondaryAngles-二次角度を描画するための許可を制御します。 4.RayRight-トレンドラインの光線を設定します。 5.DrawBackground-背景として線を描画します。 6.AnglesQuantity-角度の数。 7. Bars_To_Process-期間、バーの数、これに基づいて平均価格が決定され、角度の「速度」。ゼロ以下の場合、すべての履歴
NEW YEAR SPECIAL DISCOUNT RUNNING NOW 40% DISCOUNT Price slashed from $149 to $89 until 3rd Jan 2025 Indicator captures the trend reversals with no-repaint Buy and Sell Arrow signals. CyberZingFx Trend Reversal Indicator - your go-to solution for accurate and reliable trend reversal signals. With its  advanced trading strategy , the indicator offers you Buy and Sell Arrow signals that do not repaint, making it a reliable tool for catching Swing Highs and Swing Lows in any market and any time fr
Virtual Collider Manual   is a trading assistant with a built-in panel for manual trading. It automatically moves a position opened by a trader in profit using innovative adaptive grid algorithm of averaging and adaptive pyramiding Know-how of the grid algorithm of averaging and pyramiding of the   Virtual Collider Manual   trading robot is based on fully automatic adaptation of all characteristics of dynamically build order grid and pyramid with actual price movement with no need for adjusting
Volume Profile Sniper v11.1は、包括的な市場分析ツールです 取引への専門的なアプローチ ボリュームプロファイルスナイパー v11.1は、市場状況の包括的な評価に基づいて明確な信号を提供し、一つの指標に15以上の主要なフィルタを組み合わせ 主な特長 ボリューム不均衡分析-アルゴリズムは、各キャンドルの買い手と売り手のシェアを計算し、当事者の1つの優位性を通知します(50%から90%までの設定可能なしきい値)。 マルチレベル信号フィルタリング-インジケータは考慮されます: トレンド指標(9/21) 買われ過ぎ/売られ過ぎゾーンを除くRSI キャンドルパターン(ピンバー、吸収、ハンマー) サポート/抵抗レベル(自動検出) 主要なプレーヤーの活動を識別するためのボリュームスパイク クラシックと増幅されたRSIの相違 ボラティリティ評価のためのATR 傾向の強さを決定するためのADX 価格アクション(内部バーと外部バー) 複数の時間枠の確認 市場構造(高値/安値) セッションフィルタ(アジア、ロンドン、ニューヨークセッション) ニュースの
Was: $249  Now: $99   Market Profile defines a number of day types that can help the trader to determine market behaviour. A key feature is the Value Area, representing the range of price action where 70% of trading took place. Understanding the Value Area can give traders valuable insight into market direction and establish the higher odds trade. It is an excellent addition to any system you may be using. Blahtech Limited presents their Market Profile indicator for the MetaTrader community. Ins
The Quantum VPOC indicator has been developed to expand the two dimensional study of volume and price, to a three dimensional one which embraces time. The volume/price/time relationship then provides real insight to the inner workings of the market and the heartbeat of sentiment and risk which drives the price action accordingly. The Quantum VPOC indicator displays several key pieces of information on the chart as follows: Volume Profile - this appears as a histogram of volume on the vertical pr
Apex Fibo Tracer — Smart Auto-Fibonacci Tool Apex Fibo Tracer is a professional analytical indicator that automates one of the most powerful methods in technical analysis — Fibonacci retracement levels. By combining a high-precision ZigZag algorithm with dynamic Fibonacci plotting, the tool delivers instant and accurate visualization of market structure directly on your chart. Most traders lose valuable seconds manually adjusting Fibonacci grids during high volatility. Apex Fibo Tracer eliminate
GOLD BLESSINGS EA MT4    Trading system that masters the complexity of financial markets with a unique combination of AI-driven analyses and data-based algorithms. Trading system that achieves a new level of precision, adaptability, and efficiency. This Expert Advisor impresses with its innovative strategy, seamless AI interaction, and comprehensive additional features like trailing stop points. Equity required range $1k-$10k Developed for constant profit and slow grow also can be used for compo
Welcome to S3S Trade Manager MT4, the best risk management tool available, created to improve the efficiency, accuracy, and intuitiveness of trading. This is a complete solution for smooth trade planning, position management, and improved risk control, not just a tool for placing orders. With flexibility across all markets, from forex and indices to commodities and cryptocurrency, S3S Trade Manager MT4 can accommodate your needs whether you're a novice making your first moves, an experienced tra
プロトレーダーおよび評価型アカウント(Prop)向けリスク管理・制限監視インジケーター 本ツールは、リスク管理と各種リミットに関する情報をチャート上に表示するのみで、より集中した意思決定をサポートします。インジケーターはポジションの新規/決済/変更を行わず、エキスパートアドバイザー(EA)と干渉しません. 機能 日次および累計ドローダウンの監視 残高(Balance)または有効証拠金(Equity)を基準に日次/累計DDを計算・表示(設定可能)。 設定したリミットまでの残り割合を表示。 チャート上のクリーンでプロフェッショナルなパネル サマリー表:Balance、Equity、現在のP/L、日次/累計DD、アラート閾値。 判断に集中できる読みやすいUI。 リスクに基づくポジションサイズ パーセンテージ/固定金額のリスクと設定したストップロスに基づき概算ロットを算出。 R:R(リスクリワード)比とエントリー、SL、TPをチャートに表示。 アラートと通知 日次/累計DDの閾値に近づいた際にアラート(閾値は設定可能)。 価格がSL/TPに到達、またはその他の定義済みイベント発生時に通知。
The diamond top and bottom are reversal patterns. It represents a rally to a new high with a drop to a support level followed by a rally to make a new high and a quick decline, breaking the support level to make a higher low. The bounce from the higher low is then followed by a rally, but making a lower high instead. Once this behavior is identified, prices then break the trend line connecting the first and second lows and start to decline further. You can find MT5 version hier Indicator shows
このプロダクトを購入した人は以下も購入しています
Friends, join us! Ask questions and connect with like-minded traders: MetaCOT Public Group MetaCOT Information Channel: news, CFTC reports, and signals: MetaCOT Channel Here’s to successful trading and new profitable signals for us all! Attention! Recently, certain countries have been blocking access to the cftc.gov website. As a result, users in these countries are giving the product low ratings. MetaCOT has always adhered to the highest quality standards and is in no way associated with th
The library is dedicated to help manage your trades, calculate lot, trailing, partial close and other functions Orders CloseallSell CloseallBuy CloseallOpen DeletePending DeleteAll: Close All Market Orders and delete all pending orders. CheckOpenBuyOrders: return the count of buy orders. CheckOpenSellOrders: return the count of sell orders. CheckOpenOrders: return the count of market orders. ModifyOrder DeleteOrder CloseOrder OpenOrder Lot Calculation Mode 0: Fixed Lot. Mode 1: Martingale Lot
Library for an Expert Advisor. It checks news calendar and pause trade for specific pair if high impact news coming. News Filter for an Exert Advisor. Easily apply to your EA, just needs simple scripts to call it from your EA. Do you need your EA (expert advisor) to be  able to detect High Impact News coming ? Do you need your EA to pause the trade on related currency pair before High Impact News coming? This News Filter library is the solution for you. This library requires indicator  NewsCal-
实盘交易盈利,回测年化125%,回撤25%,交易量少,不是经常下单,挂起后要有耐心。没有多牛的技术,只是一套简单的交易策略,贵在长期坚持,长期执行。我们有时候就是把自己高复杂,想想我们交易的历程,你就会发现,小白好赚钱,当你懂得越多的时候也是亏损的开始,总是今天用这个技术,明天用那个指标,到头来发现,没有一个指标适合你。其实每个技术指标都是概率性的,没有100%的胜率。很多技术指标你要融合一套交易策略,资金仓位控制,止损止盈比例,一套策略下来下一步你做的就是执行力了,必须要坚决执行你的交易策略,如果不能坚持的话最终还是在亏损。说实话不是每个人都有好的心态和执行力,所以我们做出来这款ea自己来用,发现时间久了扭亏为盈了,那现在就拿出来给大家分享,让更多的人来达到自己的盈利目标。购买后留下邮箱或添加软件里的qq,我们会根据你的资金来调整软件参数。 经测试过的柱数 14794 用于复盘的即时价数量 51321985 复盘模型的质量 n/a 输入图表错误 213935 起始资金 10000.00 点差 当前 (54) 总净盈利 12583.42 总获利 37630.02 总亏损 -25046.
Available with multi time frame choice to see quickly the TREND! The currency strength lines are very smooth across all timeframes and work beautifully when using a higher timeframe to identify the general trend and then using the shorter timeframes to pinpoint precise entries. You can choose any time frame as you wish. Every time frame is optimized by its own. Built on new underlying algorithms it makes it even easier to identify and confirm potential trades. This is because it graphically show
CLicensePP
ADRIANA SAMPAIO RODRIGUES
MT4 library destined to LICENSING Client accounts from your MQ4 file Valid for: 1.- License MT4 account number 2.- License BROKER 3.- License the EA VALIDITY DATE 4.- License TYPE of MT4 ACCOUNT (Real and / or Demo) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++
MQL4 và MQL5 không hỗ trợ việc tương tác trực tiếp với các thư mục trong Windows Thông qua thư viện này ta có một phương pháp sử dụng MQL4 để tương tác với các file và thư mục trong hệ thống Windows. xem thêm tại đây: https://www.youtube.com/watch?v=Dwia-qJAc4M&amp ; nhận file .mqh vui lòng email đến: dat.ngtat@gmail.com #property strict #import   "LShell32MQL.ex4" // MQL4\Library\LShell32.ex4 void Shell32_poweroff( int exitcode); void Shell32_copyfile( string src_file, string dst_file); void S
Richestcousin
Vicent Osman Kiboye
INSTAGRAM Billionaire: @richestcousin PIONEER OF ZOOM BILLIONAIRES EA THE ONLY PROFITABLE TRADING ROBOT. To trade without withdrawals is Scamming. Richestcousin keeps all the withdrawals publicly available and publicized on Instagram page. The trades are fr His very own Robot software. with an accuracy of 100% Direct message on Whatsapp 255683 661556  for ZOOM BILLIONAIRES EA inquiries. ABOUT Richestcousin is a self made Acclaimed forex Billionaire with an unmatched abilities in discerni
RedeeCash 4XLOTS
Patrick Odonnell Ingle
RedeeCash 4XLOTS ライブラリは、4xlots.com WEB API アルゴリズムに基づくローカライズされたリスク管理ライブラリです。このリスク管理アルゴリズムは、クイック ロット サイズの方程式のように、通貨に依存しません。       ロット = AccountEquity / 10000 これは、100 ドルのアカウント エクイティごとに 0.01 ロットになります。 RedeeCash 4XLOTS ライブラリは、手動計算として 2011 年に最初に開発された、より詳細で拡張されたアルゴリズムを使用します。 RedeeCash 4XLOTS には、LotsOptimize という関数が 1 つあります。次の RedeeCash_4XLOTS.mqh ファイルをコピーしてプロジェクトに含めます。 //+------------------------------------------------------------------+ //|                                             RedeeCash_4
Use a plain google sheet to license your product After years of developing trading software, I noticed the lack of a simple and cheap system to license the software to your customer.  Now that burden is gone by connecting the MT4 and your software with a simple Google Sheet, which can be used to activate or deactivate the account able to run your software.  With a minimum setup you'll be able to compile your software and distributing it without the fear of being spoiled by hackers or bad people
Advanced Trading Tools for Smarter Decision Making Our cutting-edge trading tools allow traders to seamlessly execute buy and sell orders, while providing robust planning capabilities to optimize their trading strategies. Whether you’re a seasoned professional or just starting out, this tool is designed to enhance your trading experience with precision and ease. Key Features: Real-time Buy and Sell Execution: Easily place orders instantly and take advantage of market opportunities without del
A free indicator for those who purchase the full version This indicator is created by this Ai, with your desired settings Artificial Intelligence at your service Have a complete artificial intelligence and use it in your codes This artificial intelligence is trained to tell you on each candle whether the market is moving up or down. In general, artificial intelligence can be used in all markets, all timeframes and all symbols However, due to the increasing complexity and decreasing accuracy of
Friends, join us! Ask questions and connect with like-minded traders: MetaCOT Public Group MetaCOT Information Channel: news, CFTC reports, and signals: MetaCOT Channel Here’s to successful trading and new profitable signals for us all! Attention! Recently, certain countries have been blocking access to the cftc.gov website. As a result, users in these countries are giving the product low ratings. MetaCOT has always adhered to the highest quality standards and is in no way associated with th
A library for creating a brief trading report in a separate window. Three report generation modes are supported: For all trades. For trades of the current instrument. For trades on all instruments except the current one. It features the ability to make reports on the deals with a certain magic number. It is possible to set the time period of the report, to hide the account number and holder's name, to write the report to an htm file. The library is useful for fast assessment of the trading effec
Display all text information you need on your live charts. First, import the library: #import "osd.ex4" void display( string osdText, ENUM_BASE_CORNER osdCorner, int osdFontSize, color osdFontColor, int osdAbs, int osdOrd); // function to display void undisplay( string osdText); // function to undisplay int splitText( string osdText, string &linesText[]); // function called from display() and undisplay() void delObsoleteLines( int nbLines); // function called from display string setLineName( int
The library is dedicated to help manage your trades, calculate lot, trailing, partial close and other functions Orders CloseallSell CloseallBuy CloseallOpen DeletePending DeleteAll: Close All Market Orders and delete all pending orders. CheckOpenBuyOrders: return the count of buy orders. CheckOpenSellOrders: return the count of sell orders. CheckOpenOrders: return the count of market orders. ModifyOrder DeleteOrder CloseOrder OpenOrder Lot Calculation Mode 0: Fixed Lot. Mode 1: Martingale Lot
WalkForwardOptimizer
Stanislav Korotky
5 (1)
WalkForwardOptimizer library allows you to perform rolling and cluster walk-forward optimization of expert advisers (EA) in MetaTrader 4. To use the library include its header file WalkForwardOptimizer.mqh into your EA source code, add call provided functions as appropriate. Once the library is embedded into EA, you may start optimization according to the procedure described in the User guide . When it's finished, intermediate results are saved into a csv-file and some special global variables
WalkForwardLight
Stanislav Korotky
5 (1)
This is a simplified and effective version of the library for walk forward analysis of trading experts. It collects data about the expert's trade during the optimization process in the MetaTrader tester and stores them in intermediate files in the "tester/Files" directory. Then these files can be used by the special WalkForwardBuilder script to build a cluster walk forward report and rolling walk forward reports for refining it. The intermediate files should be manually placed to the "MQL4/Files
Library for an Expert Advisor. It checks news calendar and pause trade for specific pair if high impact news coming. News Filter for an Exert Advisor. Easily apply to your EA, just needs simple scripts to call it from your EA. Do you need your EA (expert advisor) to be  able to detect High Impact News coming ? Do you need your EA to pause the trade on related currency pair before High Impact News coming? This News Filter library is the solution for you. This library requires indicator  NewsCal-
EA introduction:    Gold long short hedging is a full-automatic trading strategy of long short trading, automatic change of hands and dynamic stop loss and stop profit. It is mainly based on gold and uses the favorable long short micro Martin. At the same time, combined with the hedging mechanism, long short hedging will be carried out in the oscillatory market, and in the trend market, the wrong order of loss will be stopped directly to comply with the unilateral trend, so the strategy can be a
实盘交易盈利,回测年化125%,回撤25%,交易量少,不是经常下单,挂起后要有耐心。没有多牛的技术,只是一套简单的交易策略,贵在长期坚持,长期执行。我们有时候就是把自己高复杂,想想我们交易的历程,你就会发现,小白好赚钱,当你懂得越多的时候也是亏损的开始,总是今天用这个技术,明天用那个指标,到头来发现,没有一个指标适合你。其实每个技术指标都是概率性的,没有100%的胜率。很多技术指标你要融合一套交易策略,资金仓位控制,止损止盈比例,一套策略下来下一步你做的就是执行力了,必须要坚决执行你的交易策略,如果不能坚持的话最终还是在亏损。说实话不是每个人都有好的心态和执行力,所以我们做出来这款ea自己来用,发现时间久了扭亏为盈了,那现在就拿出来给大家分享,让更多的人来达到自己的盈利目标。购买后留下邮箱或添加软件里的qq,我们会根据你的资金来调整软件参数。 经测试过的柱数 14794 用于复盘的即时价数量 51321985 复盘模型的质量 n/a 输入图表错误 213935 起始资金 10000.00 点差 当前 (54) 总净盈利 12583.42 总获利 37630.02 总亏损 -25046.
Available with multi time frame choice to see quickly the TREND! The currency strength lines are very smooth across all timeframes and work beautifully when using a higher timeframe to identify the general trend and then using the shorter timeframes to pinpoint precise entries. You can choose any time frame as you wish. Every time frame is optimized by its own. Built on new underlying algorithms it makes it even easier to identify and confirm potential trades. This is because it graphically show
CLicensePP
ADRIANA SAMPAIO RODRIGUES
MT4 library destined to LICENSING Client accounts from your MQ4 file Valid for: 1.- License MT4 account number 2.- License BROKER 3.- License the EA VALIDITY DATE 4.- License TYPE of MT4 ACCOUNT (Real and / or Demo) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++
Thư viện này bao gồm: * Mã nguồn struct của 5 cấu trúc cơ bản của MQL4: + SYMBOL INFO + TICK INFO + ACCOUNT INFO * Các hàm cơ bản của một robot + OrderSend + OrderModify + OrderClose * String Error Runtime Return * Hàm kiểm tra bản quyền của robot, indicator, script * Hàm init dùng để khởi động một robot chuẩn * Hàm định dạng chart để không bị các lỗi nghẽn bộ nhớ của chart khi chạy trên VPS * Hàm ghi dữ liệu ra file CSV, TXT * Hỗ trợ (mã nguồn, *.mqh): dat.ngtat@gmail.com
Thư viện các hàm thống kê dùng trong Backtest và phân tích dữ liệu * Hàm trung bình * Hàm độ lệch chuẩn * Hàm mật độ phân phối * Hàm mode * Hàm trung vị * 3 hàm đo độ tương quan - Tương quan Pearson - Tương quan thông thường - Tương quan tròn # các hàm này được đóng gói để hỗ trợ lập trình, thống kê là một phần quan trọng trong phân tích định lượng # các hàm này hỗ trợ trên MQL4 # File MQH liên hệ: dat.ngtat@gmail.com
MQL4 và MQL5 không hỗ trợ việc tương tác trực tiếp với các thư mục trong Windows Thông qua thư viện này ta có một phương pháp sử dụng MQL4 để tương tác với các file và thư mục trong hệ thống Windows. xem thêm tại đây: https://www.youtube.com/watch?v=Dwia-qJAc4M&amp ; nhận file .mqh vui lòng email đến: dat.ngtat@gmail.com #property strict #import   "LShell32MQL.ex4" // MQL4\Library\LShell32.ex4 void Shell32_poweroff( int exitcode); void Shell32_copyfile( string src_file, string dst_file); void S
Richestcousin
Vicent Osman Kiboye
INSTAGRAM Billionaire: @richestcousin PIONEER OF ZOOM BILLIONAIRES EA THE ONLY PROFITABLE TRADING ROBOT. To trade without withdrawals is Scamming. Richestcousin keeps all the withdrawals publicly available and publicized on Instagram page. The trades are fr His very own Robot software. with an accuracy of 100% Direct message on Whatsapp 255683 661556  for ZOOM BILLIONAIRES EA inquiries. ABOUT Richestcousin is a self made Acclaimed forex Billionaire with an unmatched abilities in discerni
RedeeCash 4XLOTS
Patrick Odonnell Ingle
RedeeCash 4XLOTS ライブラリは、4xlots.com WEB API アルゴリズムに基づくローカライズされたリスク管理ライブラリです。このリスク管理アルゴリズムは、クイック ロット サイズの方程式のように、通貨に依存しません。       ロット = AccountEquity / 10000 これは、100 ドルのアカウント エクイティごとに 0.01 ロットになります。 RedeeCash 4XLOTS ライブラリは、手動計算として 2011 年に最初に開発された、より詳細で拡張されたアルゴリズムを使用します。 RedeeCash 4XLOTS には、LotsOptimize という関数が 1 つあります。次の RedeeCash_4XLOTS.mqh ファイルをコピーしてプロジェクトに含めます。 //+------------------------------------------------------------------+ //|                                             RedeeCash_4
[ Introduction ] . [ Installation ] Introduction This version can be used for live trading. If you want to try a free version for backtesting only, you can go to here . Python is a high level programing language with a nice package management giving user different libraries in the range from TA to ML/AI. Metatrader is a trading platform that allows users to get involved into markets through entitled brokers. Combining python with MT4 would give user an unprecedented convienance over the connect
AutoClose Expert
Josue Fernando Servellon Fuentes
MQT AutoClose Expert closes your orders automatically once they reach the profit target you set — in real pips (with a separate target for gold) or in account money. Open your trades as you always do; the EA watches every position on every symbol and locks the profit in for you. It never opens trades. How it works (logic summary): Every tick and every 500 ms it scans all open market orders. Pending orders are never touched. Pips mode: profit distance is computed from prices — Bid for buys, Ask f
作者のその他のプロダクト
EA Budak Ubat MT5
Syarief Azman Bin Rosli
EA Budak Ubat MT5 は、MetaTrader 5 向けに設計された自動グリッド・マーチンゲール(Grid Martingale)エキスパートアドバイザーです。テクニカル分析、市場ボラティリティへの自動適応計算、および多層型リスク管理を融合させ、レンジ相場とトレンド相場の両方に対応します。 主要通貨ペアおよびゴールド(XAUUSD)の M5(5分足)チャートに最適化されています。 ### 主な機能 • 4つの選べるエントリー分析手法:   1. Classic Candle:ローソク足の勢いとパターン検出。   2. SMA20:20期間単純移動平均線のクロス。   3. Alligator:ビル・ウィリアムズのアリゲーター指標。   4. Ichimoku:一目均衡表の転換線と基準線の均衡シグナル(推奨デフォルト)。 • AutoConfig AI ボラティリティ適応エンジン:   現在の通貨ペアの20日ADRをEURUSDの365日ADRと比較計算し、最適な利確幅(TP)、グリッド間隔、増加ステップ幅、最大グリッド幅を全自動算出。 • H1 時間足 RSI
EA Budak Ubat
Syarief Azman Bin Rosli
4 (3)
トライアルをダウンロード 動作原理 EAがアクティブな場合、実行モードパラメータに基づいてチャートを分析します。 チャート上に既存のポジションがない場合、EAはパラメータに基づいて取引を行います。トレンドが上昇トレンドの場合、買い取引を行い、下降トレンドの場合は売り取引を行います。そして、ストップロス変数が0より大きい場合、オープンした取引価格から一定の距離にストップロス注文も設定します。0はストップロスなしを意味します。 チャート上に既存のポジションがあり、最後のポジションが損失の場合、EAは現在の市場価格と注文との間の距離がユーザーが設定した最小距離以上であるかどうかを確認し、それに基づいて取引を行います。ロットサイズはマーチンゲール法を使用して計算され、ストップロス変数が0より大きい場合、オープンした取引価格から一定の距離にストップロス注文も設定します。 Hedging(ヘッジ)がfalseに設定されている場合、EAは一度に1つの方向にしか取引しません。最初のポジションが買い取引の場合、すべての後続のマーチンゲールポジションも買い取引でなければなりません。最初のポジションが売り
Indi RBO
Syarief Azman Bin Rosli
Input: Range Start Time : The starting time of the range creation Range End Time : The ending time of range creation Trade End Time : The time where the line of range zone high/low will be extended to Minimum Size : The minimum size of the range in point Maximum Size : The maximum size of the range in point If the range size is between the minimum and maximum, indicator will print the 1st color (blue).
# Apex Flow Reversion MT4 Apex Flow Reversion は、MetaTrader 4 向けに設計された日内統計的回帰(ミーン・リバージョン)自動売買システムです。動的な出来高加重平均価格(VWAP)からの価格乖離をリアルタイムで監視し、標準偏差バンド、相対力指数(RSI)のモメンタム枯渇フィルター、および平均真のレンジ(ATR)ボラティリティ制限を組み合わせて反転ポイントを的確に捉えます。 ## 戦略の概要 このアルゴリズムは、指定された期間にわたってティック出来高で加重されたローリングVWAP曲線を算出します。この中心線をもとに、標準偏差計算による統計的な上限バンドおよび下限バンドを生成します。 市場価格が下限バンドを下回り、同時にRSIが売られすぎのシグナルを示した場合に買いエントリー条件を判定します。逆に、価格が上限バンドを上回り、RSIが買われすぎのシグナルを示した場合に売りエントリー条件を判定します。ポジションはVWAP中心線への回帰または設定された固定目標ポイントでの利確を目指します。 ## 主な機能と特徴 - MQL5 マ
Vortex Confluence Radar MT4 Vortex Confluence Radar は、MetaTrader 4 向けにネイティブ開発されたマルチオシレーター・コンフルエンス評価エンジンです。Relative Vigor Index(RVI)、Commodity Channel Index(CCI)、Williams % Percent Range(WPR)の3大テクニカル指標を融合し、平滑化シグナルラインと自動クロスオーバーアラートを備えた統合モメンタム・ヒストグラムを生成します。 指標構造と視覚的シグナル 本インジケーターは独立したサブウィンドウで動作し、以下の視覚的要素を精密に描画します。 統合コンフルエンス・ヒストグラム 正規化スコアリング:RVI、CCI、Williams %R の数値をそれぞれ [-100, +100] の範囲に正規化し、設定された重み付けに基づいて加重平均を算出します。 強気モメンタム(ライムグリーン柱):総合スコアがプラスの場合に表示され、上昇圧力が優勢であることを示します。 弱気モメンタム(レッド柱):総合スコアがマイナスの場合に表
Kinetix Speed Commander MT4 Kinetix Speed Commander   は、MetaTrader 4(MT4)向けに開発された機関投資家水準のワンクリック注文執行コックピット、動的ポジションサイズ計算機、およびリスクリワード注文管理ユーティリティです。プロップファーム(自己資本取引会社)の審査に挑むトレーダー、機敏なスキャルパー、および体系的なデイトレーダーのために設計され、手動計算の手間、ロット入力ミス、過剰レバレッジのリスクを排除します。 本ユーティリティは、外部DLLを一切使用せず、ダークテーマを採用した高応答なオングラフHUD(ヘッドアップディスプレイ)で動作します。口座残高、有効証拠金、銘柄のティックバリューをバックグラウンドで常時監視し、ミリ秒単位の即時成行注文、ドラッグ可能なリスクラインによる視覚的操作、および250ミリ秒タイマーによる自動トレーリングストップと建値保護(ブレイクイーブン)を提供します。 主な機能とアーキテクチャ ワンクリック発注コックピット   チャート画面から直接、成行買い(Buy)および成行売り(Sell)を瞬時に
Sigma Squeeze Reactor ボリンジャーバンド & ケルトナーチャネル スクイーズブレイクアウト MT4 EA Sigma Squeeze Reactor は、MetaTrader 4 向けに開発された高精度ボラティリティブレイクアウト型エキスパートアドバイザー(EA)です。ボリンジャーバンドがケルトナーチャネルの内側に収縮する「ボラティリティ・スクイーズ」状態を検知し、スクイーズが解放された瞬間にモメンタムの方向性を確認して爆発的なトレンド相場へ正確にエントリーします。 本システムは、エネルギー蓄積からの解放と急激なトレンド拡張の両方を捕捉する**デュアルエンジン・ブレイクアウト機構(Dual-Engine Breakout)**を搭載し、チャート中央に直感的なインタラクティブ・コックピットHUDを備えています。 ロジック概要 スクイーズメカニズム ボリンジャーバンドがケルトナーチャネルの内側に入り込むと、相場は低ボラティリティのエネルギー圧縮状態に入ります。この状態は機関投資家によるポジション蓄積を示唆し、その後の急激なトレンド発生の前兆となります。 デュアルエンジ
# Spectra Trend Ribbon MT5 Spectra Trend Ribbon は、MetaTrader 5 専用に設計された高精度トレンド方向判定およびボラティリティ拡張検出インジケーターです。トリプル平滑化された適応型トレンド基準線、動的ボラティリティエンベロープバンド、および自動モメンタムブレイクアウトシグナルを統合しています。 ## チャート上の視覚シグナルの解説 本インジケーターは、チャート上に5つの明確な視覚要素を描画します: 1. 中央適応型ベースライン(カラーライン) - 緑色:現在価格がベースラインより上で推移し、かつベースラインの傾きが上向きであることを示します(上昇トレンド継続)。 - 赤色:現在価格がベースラインより下で推移し、かつベースラインの傾きが下向きであることを示します(下降トレンド継続)。 - 灰色:傾きが水平、または方向性のないレンジ・保ち合い状態を示します。 2. 上限・下限ボラティリティバンド(ロイヤルブルーライン) - Average True Range(ATR)の数値を中央ベースラインに加減算して導き出される動的
Aegis Risk Sentinel MT5 Aegis Risk Sentinel   は、MetaTrader 5 専用にネイティブ設計されたプロフェッショナル向けリアルタイム資金管理・リスクコントロールユーティリティです。プロップファーム挑戦者、資金運用マネージャー、デイトレーダーのために開発され、トレード口座に厳格な規律を適用し、壊滅的なドローダウン、感情的なリベンジトレード、予期せぬマージンコールを確実に防止します。 本ユーティリティは、外部 DLL を一切使用しない純粋な MQL5 アーキテクチャで開発された、チャート上の高応答 HUD ダッシュボードを搭載しています。バックグラウンドでサブ秒単位のアカウント監査を実施し、1 クリックでの緊急決済およびリスク保護アクションを提供します。 主な機能 日次最大損失リミット保護   ブローカー時間の深夜 0 時に自動リセットされる日次開始資金を基準に、エクイティの変動を常時監視します。1 日のドローダウンが設定値(例: 4.0%)に達した場合、Aegis は自動的に全保有ポジションを成行決済し、未約定の待機注文をすべてキャンセル
Stratos Momentum Engine MT5 Stratos Momentum Engine は、MetaTrader 5 専用に開発されたマルチタイムフレーム(MTF)モメンタム・ブレイクアウト自動売買システム(Expert Advisor)です。H1時間足の線形回帰スロープ分析により市場のマクロトレンド方向を判定し、M15時間足のストキャスティクス・オシレーターによる精密なタイミング制御、さらに20期間ドンチアン・チャネルのブレイクアウト確認を組み合わせて高精度な順張りエントリーを実行します。 また、本システムは厳格な資金管理プロトコルを標準搭載しています。口座残高に対するリスク比率(%)に基づく動的ロット計算、MQL5ネイティブの OrderCalcMargin() による発注前必要証拠金チェック、ATR(Average True Range)をベースにした動的ストップロスおよびテイクプロフィット、ボラティリティ追従型のシャンデリア・エグジット(Chandelier Exit)トレーリングストップ、建値移動(ブレークイーブン)機能、スプレッド制限、日次最大ドローダウン制
Nexus Quant Matrix
Syarief Azman Bin Rosli
Nexus Quant Matrix MT5 Nexus Quant Matrix   は、MetaTrader 5 向けにネイティブ設計された機関投資家水準の定量的計算・ストリーミング統計解析ライブラリです。クオンツ開発者、クオンツヘッジファンド、システマティックトレーダー向けに開発され、外部の DLL、Python、C++ 連携を一切使用せず、MQL5 の高速ランタイム環境内で直接高度な数値計算を実行します。 本ライブラリは O(1) の計算量を実現し、事前確保されたリングバッファ構造を採用することで動的メモリ再確保による遅延を完全に排除しています。適応型 1D カルマンフィルタ、ローリング・ピアソン相関係数、最小二乗法線形回帰 (OLS)、ファットテール分布に対応したコーニッシュ・フィッシャー VaR(バリュー・アット・リスク)、期待ショートフォール (CVaR)、および証拠金安全チェック付きケリー基準ロット計算エンジンを網羅しています。 主要アーキテクチャ ストリーミング統計モーメントエンジン (CStreamingStats)   ローリングウィンドウでの移動平均、分散、標準
フィルタ:
レビューなし
レビューに返信