MovingAverageDeviationBandsMT4

MAD Bands(Moving Average Deviation Bands)

MAD Bands は、価格に対するボラティリティの挙動を移動平均との関係から視覚的に確認したい場合に利用することを想定しています。


MAD_Bands (MQL4版) パラメータ解説

このドキュメントでは、各設定項目(Inputパラメータ)について、MT4のパラメータ入力画面を解説します。

Group: Main (基本設定)

Period

  • 初期値:  20
  • 解説: 移動平均線(Mid)やバンド幅の計算に使用するローソク足の本数です。数値を大きくすると線が滑らかになりますが、反応は遅くなります。

Shift

  • 初期値:  0
  • 解説: インジケータの描画位置を左右にずらします。通常は  0  です。

Center Method

  • 初期値:  EMA
  • 解説: 中心線(Midライン)の計算ロジックを選択します。
    • SMA : 単純移動平均
    • EMA : 指数平滑移動平均(直近重視)
    • WMA : 加重移動平均
    • SMMA : 平滑移動平均(長期目線)
    • ZLMA : ゼロラグMA(反応が早い)
    • TMA : 三角移動平均(滑らか)
    • Median : 中央値(ヒゲを無視する特性)

Applied Price

  • 初期値:  Close
  • 解説: 計算に使用する価格データです(終値、始値など)。

Deviation Method

  • 初期値:  Max
  • 解説: バンド幅の決定ロジックを選択します。
    • BB : ボリンジャーバンド(標準偏差)
    • ATR : ケルトナーチャネル(ATR)
    • MAD : 中央値絶対偏差(異常値に強い)
    • QSigma : 分位点シグマ(統計分布ベース)
    • Blend : 標準偏差とATRを混合
    • Max : 標準偏差とATRの「値が大きい方」を採用

Group: Deviation Settings (偏差設定)

Deviation Multiplier (Global)

  • 初期値:  1.0
  • 解説: 計算されたバンド幅全体に対する倍率です。全体的にバンドを広げたい場合は  1.0  より大きくします。

ATR Period (if used)

  • 初期値:  14
  • 解説:  Deviation Method    ATR ,  Blend ,  Max  を選択している場合に使用されるATRの期間です。

Blend Weight (0=StdDev...1=ATR)

  • 初期値:  0.5
  • 解説:  Deviation Method    Blend  の時の配合比率です。 0 で標準偏差100%、 1 でATR100%となります。

Group: TailRisk (テールリスクガード)

Use one-sided CVaR guard

  • 初期値:  false
  • 解説: テールリスク(急変)ガード機能を有効にするかどうかのスイッチです。

Tail window (N)

  • 初期値:  100
  • 解説: リスク評価のために参照する過去の期間(ローソク足本数)です。

Tail alpha (worst 10%)

  • 初期値:  0.10
  • 解説: 上位何%の変動をリスクとみなすかの感度設定です。数値を小さくする(例: 0.01)と、めったに起きない大暴落のみに反応します。

Tail weight (beta)

  • 初期値:  1.0
  • 解説: 検出されたリスク幅をバンドに反映させる際の強さです。

Up tail base  /  Up tail alt (max)

  • 初期値:  High - Open  /  High - Close
  • 解説: 上側バンドを広げるための「上昇方向のリスク(急騰幅)」を、ローソク足のどの部分(ヒゲや実体)で計測するかを定義します。
    • 2つの設定(BaseとAlt)のうち、値が大きい方が採用されます。
    • High - Open : 始値から高値までの上昇幅。
    • High - Close : 終値から高値までの上昇幅(上ヒゲ)。
    • Open - Low : 始値から安値までの下落幅。
    • Close - Low : 終値から安値までの下落幅(下ヒゲ)。
    • ※通常は「上昇リスク=高値までの距離」を測るため、デフォルト設定が推奨されます。

Down tail base  /  Down tail alt (max)

  • 初期値:  Open - Low  /  Close - Low
  • 解説: 下側バンドを広げるための「下落方向のリスク(急落幅)」を定義します。
    • 同様に、2つの設定のうち値が大きい方が採用されます。
    • デフォルトでは、下方向への突き抜け(安値までの距離)を重点的に監視します。

Group: Levels (表示ライン設定)

Visible ±1sigma    3sigma

  • 初期値:  true
  • 解説: 各バンドラインを表示するかどうかの設定です。

±1sigma    3sigma

  • 初期値:  1 ,  2 ,  3
  • 解説: 各ラインの偏差倍率を設定します。

設定例

以下は、 Center Method    Deviation Method  の組み合わせ例です。

1. クラシック・ボリンジャーバンド設定

一般的に普及しているボリンジャーバンドと同じ挙動にする設定です。

  • Center Method : SMA
  • Applied Price : Close
  • Deviation Method : BB
  • Period: 20

2. ケルトナー・チャネル設定

トレンドの強弱をATRで測る、ケルトナーチャネルです。

  • Center Method : EMA
  • Applied Price : Typical (または Close)
  • Deviation Method : ATR
  • Period: 20
  • ATR Period: 20

3. 高反応スキャルピング設定

価格追従性を高め、かつ急激な変動(ヒゲ)によるバンド拡大を抑える設定です。

  • Center Method : ZLMA (または EMA)
  • Deviation Method : MAD (中央値偏差)

4. ロバスト・トレンドフィルター設定

ダマシを極力減らし、大きなトレンド発生時のみバンドブレイクを狙うための保守的な設定です。

  • Center Method : Median
  • Deviation Method : Max (ボリンジャーとATRの広い方)
  • Use one-sided CVaR guard : true

5. 統計的厳密&ショックガード設定 (Quantile + TailGuard)

普段の変動は統計的に厳密な Quantile Sigma で捉えつつ、100本に1回レベルのブラックスワン級の変動(ファットテール)が起きた時だけ、Tail Risk 機能でバンドを強制的に広げて防御します。

  • Center Method : Median
  • Deviation Method : Equivalent Sigma from Quantiles (統計的厳密)
  • Use one-sided CVaR guard : true
  • Tail alpha: 0.01 ~ 0.05 (100本に1回) あるいは(20本に1回)レベルの異常事態のみを検知対象とする。大きくしすぎるとメリットが減ります。
  • Tail weight: 2.0 ~ 3.0 もし異常を検知した場合、バンドを通常の[Tail weight]倍の強度で広げる事で安易な逆張りタッチを回避します

おすすめのプロダクト
Renko Chart with Moving Average. Classic Renko charts idea. It is protted on main chart and Moving Average can be applied. Prices for bars are used from a lower timeframe. Parameters: BarsBack - how many bars of lower timeframe to use. If value is zero than it will use all available bars. LTF - lower timeframe. BrickSize - Renko bar in points. BullishColor - color for bull candle. BearishColor - color for bear candle. HideLineChart - if this value is true the line chart when be hidden when sele
FREE
MASi Three Screens is based on the trading strategy by Dr. Alexander Elder. This indicator is a collection of algorithms. Algorithms are based on the analysis of charts of several timeframes. You can apply any of the provided algorithms. List of versions of algorithms:     ThreeScreens v1.0 - A simple implementation, with analysis of the MACD line;     ThreeScreens v1.1 - A simple implementation, with analysis of the MACD histogram;     ThreeScreens v1.2 - Combines the first two algorithms in
FREE
RSI TrendLine Divergency Message is an indicator for the MetaTrader 4 trading platform. Unlike the original indicator, this three in one version has a system of alerts that inform on market situation changes. It consists of the following signals: when the Main line crosses the levels of extreme zones and 50% level; when the Main line crosses the Trend line in the indicator window; divergence on the last bar. Parameters of levels of extremum, 50-level and divergence are adjustable. Parameters La
The indicator builds a Renko chart in the sub window for the current symbol. The bars are formed from live data and the desired bar size can be set in the inputs tab. Most importantly, because the Renko chart only uses price to construct bars and ignores time, the indicator can be applied to any time frame and same results can be achieved. Recommended usage As Renko charts are famous for eliminating noise so traders can use this tool to see clear picture of the trend to help their analysis, entr
FREE
Power Renko is an indicator which plots Renko bricks underneath the chart using a histogram. You can select the brick size and the timeframe of the Renko bricks as well as whether or not to use the close price or the high/low price of the candles. Renko bricks are based on price alone, not time, therefor the Renko bricks will not be aligned with the chart's time. They are extremely useful for trend trading and many different strategies can be formed from them. Buffers are provided allowing you t
Candle GAP
Thushara Dissanayake
3 (1)
ローソク足ギャップ インジケーターは、曜日ごとのローソク足ギャップを自動的に識別するため、 ギャップ取引戦略を 利用するトレーダーにとって不可欠なツールです。ギャップとは、連続する 2 日間の終値と始値の間の価格レベルの差を指します。このインジケーターは、共通、離脱、継続、枯渇の 4 種類のギャップ パターンを認識します。このインジケーターをチャートに組み込むことで、トレーダーはシグナルを検証し、取引の意思決定を強化できます。 ローソク足 GAP インジケーターの重要な特徴の 1 つは、D1 (日次) の下の任意の時間枠および任意のシンボルまたは商品に対して使用できる多用途性です。使いやすいパラメータを提供し、あらゆる経験レベルのトレーダーが利用できるようになります。このインジケーターはチャート上にギャップ パターンを迅速に描画し、迅速な分析と意思決定を可能にします。そのシンプルさにより使いやすさが向上し、簡単で効率的な取引体験が保証されます。 インジケーターのデータ表示パラメーターを使用すると、トレーダーはギャップ情報の外観をカスタマイズできます。ユーザーは、各曜日に関連付けられたテ
FREE
Delta Fusion Pro – 日中取引のための高度なオーダーフロー分析 Delta Fusion Pro は MetaTrader 4 用のプロフェッショナル指標で、アグレッシブな注文フローを明らかにし、機関投資家の圧力の強度と方向をリアルタイムで表示します。従来のボリューム指標とは異なり、Ask と Bid のボリューム差(デルタ)を分析し、反転の予測、トレンドの確認、プロフェッショナルな関心ゾーンの特定を可能にします。 主な特徴 インテリジェント自動調整システム 以下に基づき、すべてのパラメータを自動調整: 銘柄タイプ(FX、暗号資産、指数、コモディティ、株式) 運用タイムフレーム 市場のボラティリティ(ATR) 最近の平均ボリューム 初心者トレーダー向けに手動設定不要 — インジケーターが自動でキャリブレーション! 機能概要 NetDelta と累積デルタ Ask/Bid のアグレッシブボリューム差を計算、カスタマイズ可能な EMA スムージング リアルタイムで方向性圧力を表示 ヒストグラムの色をカスタマイズ(買い/売り) 価格/ボリュームのダイバージェンス 通常お
This indicator shows the gaps on the current chart with a rectangle shape and indicates when the gap is filled by closing the shape. Gaps are considered over the shadows. Allows sending alerts by e-mail or push notifications when a gap is found. Parameters SizeGAP - Size of the gap that you want to indicate; HGcolor1 - Color of the gap in an upward movement; HGcolor2 - Color of the gap in a downward movement; HGstyle - The style of rectangle to be drawn; StartCalculationFromBar - How many candl
Chaos Trader Lite attempts to use aspects of chaos theory to place trades in the marketplace. This Expert Advisor, in particular, draws upon theories made by Bill Williams. Every version of MetaTrader contains the Bill Williams indicators. I wondered why was he deemed so important as to have his own set of indicators added to MetaTrader with name attribution. Conducting research I found that Bill Williams wrote a book using chaos theory to trade the markets. The Bill Williams indicators are usef
FREE
The indicator calculates and displays renko bars using MA and PSAR data as well as provides buy/sell signals. Renko is a non-trivial price display method. Instead of displaying each bar within a time interval, only the bars where the price moved a certain number of points are shown. Renko bars do not depend on a time interval, therefore the indicator works on any timeframe without losing its efficiency. Buy signal forms when PSAR readings are moving down, MA is moving up, the price is closing ab
The BLACK ZONE PREMIUM INDICATOR is a powerful all-in-one trading assistant built to bring clarity, precision, and consistency to forex trading. It combines multi-timeframe market structure, trade forecasting, risk management, and live monitoring into one professional-grade tool. From planning trades to managing them with discipline, this indicator equips traders with everything they need to make informed and confident decisions. If you’ve been looking for a professional solution that simplifies
Chaser
Thebo Junior Mahlangu
Introduction  This Indicator Is Based On Average Price/Maximum Price Moves, And Using Moving Bollinger Bands And Moving Averages. The Advantage Of Using It With YOUR own Analysis Will Confirm Potential Supports And Resistances While it Compliments With Your Analysis  The Indicator Is Non-Repainting AND Along With Our Special Trend METRE that Changes With The Conditions OF A Bullish Or Bearish Trend....  Recommend Time-Frames: H1  H4 M15 Usage: The Indicator Is Very Profitable If Use
FREE
The indicator calculates and displays Renko bars using PSAR and CCI data as well as provides buy/sell signals. Renko is a non-trivial price display method. Instead of displaying each bar within a time interval, only the bars where the price moved a certain number of points are shown. Renko bars do not depend on a time interval, therefore the indicator works on any timeframe without losing its efficiency. The buy signal is generated when the CCI indicator crosses the 100 level upwards, and the PS
Are you tired of drawing trendlines every time you're analyzing charts? Or perhaps you would like more consistency in your technical analysis. Then this is for you. This indicator will draw trend lines automatically when dropped on a chart. How it works Works similar to standard deviation channel found on mt4 and mt5. It has 2 parameters: 1. Starting Bar 2. Number of bars for calculation The   starting bar   is the bar which drawing of the trend lines will begin, while the   number of bars for c
FREE
小さな価格変動をフィルタリングし、大きなトレンドに焦点を当てる . Renkoチャート指標は、小さな価格変動をフィルタリングして、全体のトレンドに焦点を当てるのに役立ちます。 価格が指定された距離だけ動くことで、Renkoブロックが作成されます。 これにより、価格が動いている現在のトレンド方向を簡単に特定できます。 多機能ユーティリティ : 66以上の機能を含む  |   ご質問があればご連絡ください   |    MT5バージョン インジケーターの設定で、以下を構成できます: 計算設定: ブロックサイズ(ポイント単位); インジケーターのスタイル: ブロックの色; プログラムファイルは " Indicators " ディレクトリに配置してください。
このプロジェクトが好きなら、5つ星レビューを残してください。 このインジケータは、指定されたためのオープン、ハイ、ロー、クローズ価格を描画します 特定のタイムゾーンの期間と調整が可能です。 これらは、多くの機関や専門家によって見られた重要なレベルです トレーダーは、彼らがより多くのかもしれない場所を知るために有用であり、 アクティブ。 利用可能な期間は次のとおりです。 前の日。 前週。 前の月。 前の四半期。 前年。 または: 現在の日。 現在の週。 現在の月。 現在の四半期。 現年。
FREE
Rira Renko
Vitor Palmeira Abbehusen
RENKO on Time Chart This indicator is an enhanced Renko, so you can watch the Renko bricks on the chart to understand price movement more clearly the other improvement is automated box size according to ATR (Average True Range) period you can set the ATR number as you want and the box size of Renko changes automatically based on price movement Inputs Mode: Box size is the input to specify the size of the Renko box you want to print on the chart. This input lets you choose the fixed box siz
Advanced UT Bot & HTS Indicator This indicator is an advanced technical analysis tool that combines two methods: UT Bot and HTS (Higher Timeframe Smoothing) , to generate accurate buy and sell signals. 1. Indicator Structure Works within the main chart window and utilizes 11 buffers to store various data points, including arrows (buy/sell signals) and bands from both UT Bot and HTS systems. Uses colored arrows to represent different trading conditions: Blue arrows : Normal buy signals. Red arro
Features: 1- Get OB/OS Levels from Golden MA Levels 2- Wait for Buy/Sell Start Level Cross 3- Optional: Should price cross Mid Level in earlier bars 4- Optional: Crossing bar High/Medium Volume 5- Optional: MA Stacked to check up/down trend for current TF 6- Optional: NRTR higher timeframes aligned Check Detailed blog post explained: https://www.mql5.com/en/blogs/post/758457 Levels with Buffers available here: Golden MA Levels Indicator: https://www.mql5.com/en/market/product/119515 Note: Arr
FREE
This indicator is based on Guppy's GMMA Strategy. And shows arrows when GMMA lines cross up or down. To have this indicator and get alerts for Multiple Timeframes and multiple Pairs you can check out the demo of this GMMA Trend Scanner indicator: https://www.mql5.com/en/market/product/38747 About GMMA In Brief: GMMA attempts to identify trends by combining two groups of moving averages with differing time periods: The long-term EMAs (30, 35, 40, 45, 50, and 60) the behaviors of investors that h
FREE
Discover the power of precision and efficiency in your trading with the " Super Auto Fibonacci " MT4 indicator. This cutting-edge tool is meticulously designed to enhance your technical analysis, providing you with invaluable insights to make informed trading decisions. Key Features: Automated Fibonacci Analysis: Say goodbye to the hassle of manual Fibonacci retracement and extension drawing. "Super Auto Fibonacci" instantly identifies and plots Fibonacci levels on your MT4 chart, saving you tim
FREE
Tibors Timer -  Indikator zur Übersicht und Klarheit im Chart Dieser Indikator wurde von mir geschrieben, da ich oftmals die wichtigsten Informationen während eines Trades bzw. im Chart mühevoll suchen musste. Bitte täglich neu in den Chart ziehen.   Er zeigt folgendes an: - Akuteller Kurs - Aktuelles Handelspaar - Die Zeiteinheit - Die Restzeit zur nächsten Kerzenbildung - Die Nummer des Handelskontos - Die Frei Verfügbare Margin - Margin auf 1 Lot - Der Aktuelle Hebel  - Der Aktuelle Spprea
FREE
Market Profile 3
Hussien Abdeltwab Hussien Ryad
3 (2)
Market Profile 3 MetaTrader 4 indicator  — is a classic Market Profile implementation that can show the price density over time, outlining the most important price levels, value area, and control value of a given trading session. This indicator can be attached to timeframes between M1 and D1 and will show the Market Profile for daily, weekly, monthly, or even intraday sessions. Lower timeframes offer higher precision. Higher timeframes are recommended for better visibility. It is also possible t
FREE
GTAS STrend
Riviera Systems
4.5 (2)
GTAS S-Trend is a momentum indicator that helps to determine trends using combination of MACD, RSI and moving averages. This indicator was created by Bernard Prats Desclaux, proprietary trader and ex-hedge fund manager, founder of E-Winvest. Description The indicator oscillates between -65 and +65 with a neutral zone between -25 and +25 around a 0 equilibrium line. S-Trend between -25 and +25 indicates congestion zones with a bullish bias between 0 and +25, and a bearish bias between 0 and -25.
FREE
Quantum Falcon Signal Free is a smart visual trading indicator for MetaTrader 4 designed for Forex and Gold traders. The indicator combines: • Trend analysis • RSI momentum confirmation • MACD momentum filtering • ATR volatility filtering • Higher timeframe confirmation • Smart exit signal detection Main Features: • Smart Buy and Sell signals • Exit Buy / Exit Sell alerts • Real-time dashboard on chart • Professional candle arrows • Multi-timeframe trend confirmation • ATR market volatility filt
FREE
The Before indicator predicts the most likely short-term price movement based on complex mathematical calculations. Most of the standard indicators commonly used in trading strategies are based on fairly simple calculations. This does not mean that there were no outstanding mathematicians in the world at the time of their creation. It is just that computers did not yet exist in those days, or their power was not enough for the sequential implementation of complex mathematical operations. Nowad
Bigger chart labels would allow the user to be entirely aware of which chart he/she is on. Each chart window is unique, containing different patterns and economic motives so acknowledging the chart window would be absolutely essential! There are well known Economic Time Zones included in clear view, by choice!    Simple does it! Use your computing mouse scroller, clicking with the right finger on the label, in order to customize the label properties. From there, choose your preferred color, fon
FREE
Fibonacci will be designed by default based on the monthly candle but you can simultaneously view Fibonacci on a weekly candle or you can choose your two favorite timeframes. When you run this script, an input prompt will appear and the following input parameters can be configured: Input Parameters: Name Example Default Timeframe1 Monthly 43200 Timeframe2 Weekly 10080 TF1status 1 on 1 TF2status 0 off 0 candleID you can choose which candle to apply 1 Prefix1 It's is the prefix of the first object
FREE
+ 2 bonus strategies! Alerts! I recommend watching my advisor -   Night Zen EA The indicator combines the most popular moving average strategies: Simple moving average crossover. Moving average crossover relative to the position of the slower moving average. 2 bonus strategies : The crossing of the fast moving average with the calculation of the opening prices of the slow moving average with the calculation of the closing prices taking into account the slower moving average. (The settings for th
FREE
複数の時間枠での移動平均線の交差。 従来のトレンド戦略は、日次のような 1 つの時間枠を選択してトレンドを推定することですが、このエキスパート アドバイザーは、5M から月次までのすべての時間枠が同じトレンドを示したときに、トレンドの方向に取引を開始します。       SINGLE_CURRENCY = true、単一通貨での操作を許可します。無効 (FALSE) の場合、メタトレーダーのマーケット ウォッチ ウィンドウで選択された通貨を取引します。       CONCURRENT_ORDERS=0、同時に開かれる複数の注文の数を制限します。       PIPS=100、利益PIPS       DODDFRANK_COMPLAINCE = false、米国ベースのアカウントで取引する場合、FIFO 違反の受信を防ぐために FIFO を有効にする必要がありますか?       LOTS=-1、LOTs パラメーターが 0 未満 (または負) の場合、ロット サイズは、アカウントの資産 (残高ではなく) $100 USD ごとに 0.01 ロットに基づく内部アルゴリズ
FREE
このプロダクトを購入した人は以下も購入しています
Genesis Matrix Pro is a professional multi-timeframe trend detection indicator designed to help traders identify high-quality market alignment with clarity and structure. It combines 12 different technical indicators into one visual alignment matrix, allowing traders to quickly see when market conditions are bullish, bearish, or neutral. A signal is generated only when the selected strategies are aligned, helping reduce noise and improve decision-making. PLEASE CONTACT ME AFTER PURCHASE TO GET
Gann Made Easy は、ミスター・ギャンの理論を使用した取引の最良の原則に基づいた、プロフェッショナルで使いやすい外国為替取引システムです。 W・D・ガン。このインジケーターは、ストップロスとテイクプロフィットレベルを含む正確な買いと売りのシグナルを提供します。 PUSH通知を利用して外出先でも取引可能です。 ご購入後、取引方法の説明と優れた追加インジケーターを無料で入手するには、私にご連絡ください! おそらく、ギャンの取引手法についてはすでに何度も聞いたことがあるでしょう。通常、ギャンの理論は初心者のトレーダーだけでなく、すでにある程度の取引経験がある人にとっても非常に複雑なものです。なぜなら、ギャンの取引手法は理論的にはそれほど簡単に適用できるものではないからです。私はその知識を磨き、最良の原則を私の外国為替インジケーターに組み込むために数年を費やしました。 このインジケーターは非常に簡単に適用できます。必要なのは、それをチャートに添付し、簡単な取引推奨事項に従うだけです。このインジケーターは常に市場分析の仕事を行い、取引の機会を探します。適切なエントリーポイントを検出す
Scalper Inside PRO Scalper Inside PRO は、MetaTrader 4 向けの短期トレンドおよびスキャルピング用インジケーターです。独自アルゴリズムを用いて、市場の方向性と主要なターゲットレベルを素早く検出します。エントリー、イグジット、複数の利確ターゲットを自動計算し、詳細なパフォーマンス統計を表示することで、さまざまな銘柄やストラテジーがどのように機能してきたかを確認できます。これにより、現在のマーケットコンディションに最も適した取引銘柄を選択するのに役立ちます。さらに、Scalper Inside PRO には、お使いの矢印インジケーターを簡単に接続でき、その統計と過去のパフォーマンスを素早く評価できます。 本インジケーターは、あらゆる銘柄と時間足で動作し(短期トレードには M5 を推奨)、複数の内蔵ストラテジーを備えています。そのため、単体のスキャルピングツールとしても、トレーディングシステム内の強力な分析コンポーネントとしても活用できます。 主な機能 独自アルゴリズム(Next‑Generation Trend Detection Algor
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for all
M1 SNIPER は使いやすいトレーディングインジケーターシステムです。M1時間足向けに設計された矢印インジケーターです。M1時間足でのスキャルピングのためのスタンドアロンシステムとして、また既存のトレーディングシステムの一部としても使用できます。このトレーディングシステムはM1時間足での取引に特化して設計されていますが、他の時間足でも使用できます。元々、この手法はXAUUSDとBTCUSDの取引用に設計しましたが、他の市場においても役立つと考えています。 インジケーターのシグナルは、トレンドの方向と逆方向に取引できます。インジケーターのシグナルを利用して両方向に取引するのに役立つ特別な取引テクニックをご紹介します。この手法は、特別な動的なサポートとレジスタンスの価格帯を利用することに基づいています。 ご購入後、M1 SNIPER矢印インジケーターをすぐにダウンロードできます。さらに、M1 SNIPERツールのすべてのユーザーに、以下のスクリーンショットに表示されているApollo Dynamic SRインジケーターを無料で提供しています。この2つのインジケーターを組み合わせることで
Dynamic Forex28 Navigator - 次世代の Forex 取引ツール。 現在 49% オフ。 Dynamic Forex28 Navigator は、長年人気のインジケーターを進化させたもので、3 つの機能を 1 つにまとめています。 Advanced Currency Strength28 インジケーター (レビュー 695 件)  + Advanced Currency IMPULSE with ALERT (レビュー 520 件) + CS28 コンボ シグナル (ボーナス)。 インジケーターの詳細 https://www.mql5.com/en/blogs/post/758844 次世代の Strength インジケーターが提供するもの  オリジナルで気に入っていたすべての機能が、新機能と精度の向上によって強化されました。 主な機能: 独自の通貨強度計算式。 すべての時間枠でスムーズかつ正確な強度ライン。 トレンドの特定と正確なエントリーに最適です。 ダイナミックマーケットフィボナッチレベル (マーケットフィボナッチ)。 このインジケーターに固有
まず第一に、この取引ツールはノンリペイント、ノンリドロー、ノンラグの指標であり、プロの取引に理想的ですことを強調する価値があります。 オンラインコース、ユーザーマニュアル、デモ。 スマートプライスアクションコンセプトインジケーターは、新米から経験豊富なトレーダーまで、非常 に強力なツールです。Inner Circle Trader AnalysisやSmart Money Concepts Trading Strategiesなど、20以上の有用な指標を1つに組み合わせています。このインジケーターはスマートマネーコンセプトに焦点を当て、大手機関の取引方法を提供し、彼らの動きを予測するのに役立ちます。 特に、流動性分析に優れており、機関がどのように取引しているかを理解しやすくしています。市場のトレンドを予測し、価格の動きを慎重に分析するのに優れています。機関の戦略とトレードを合わせることで、市場の動向についてより正確な予測ができます。このインジケーターは多目的であり、市場構造を分析し、重要な注文ブロックを特定し、さまざまなパターンを認識するのに優れています。 このインジケーターは
このインジケーターは、反転ポイントと価格戻りゾーンを正確に表示します。     主要プレーヤー 。新たなトレンドが形成される場所を把握し、最大限の精度で意思決定を行い、すべての取引をコントロールします。 TREND LINES PRO インジケーターと組み合わせることで、その潜在能力を最大限に発揮します。 VERSION MT5 インジケーターが示す内容: 新しいトレンドの始まりに活性化する反転構造と反転レベル。 リスクと報酬の比率を最小限に抑えた利益 確定 と 損失停止の レベルの表示     RR 1:2   。 インテリジェントな削減ロジックによるストップロス。 指定されたインジケーターから 2 つのトレンド タイプの反転パターンを表示します。 指標: トレンドを追う   TREND LINES PRO   (世界的なトレンドの変化) TREND PRO   (クイックトレンド変更) シンプルで効果的   スキャナー   リアルタイムトレンド(新機能)。 マルチタイムフレームのインストゥルメント フィルタリング。 画面   利益     LOGIC AI信号の後。 当日プラス方
PRO Renko Systemは、特別にRENKOチャートを取引するために設計された高精度の取引システムです。 これは、様々な取引商品に適用することができる普遍的なシステムです。 システムは効果的に正確な逆転信号へのアクセスを与えるいわゆる市場の騒音を中和する。 表示器は非常に使いやすく、信号の生成に責任がある1つの変数だけがあります。 あなたは簡単にお好みの任意の取引ツールとレンコバーのサイズにツールを適応させることができます。 私はいつもあなたが私のソフトウェアで収益性の高い取引を支援するために余分なサポートを提供する準備ができています! 私はあなたに幸せで収益性の高い取引をしたいです! ご購入後にご連絡ください! 私はあなたに私のレンコチャートジェネレータを送信します。 私はまた、私の個人的な推奨事項やシステムの他のモジュールを無料で共有します!
優れたテクニカルインジケーター「Grabber」をご紹介します。これは、すぐに使える「オールインワン」トレーディング戦略として機能します。 ひとつのコードに、市場のテクニカル分析ツール、取引シグナル(矢印)、アラート機能、プッシュ通知が強力に統合されています。 このインジケーターを購入された方には、以下の特典を無料で提供します: Grabberユーティリティ:オープンポジションを自動で管理するツール ステップバイステップのビデオマニュアル:インジケーターのインストール、設定、取引方法を解説 カスタムセットファイル:インジケーターをすばやく自動設定し、最大限の成果を出すための設定ファイル 他の戦略はもう忘れてください!Grabberだけが、あなたを新たなトレードの高みへと導いてくれるのです。 Grabber戦略の主な特徴: 推奨タイムフレーム:M5〜H4 対応通貨ペア・資産:どれでも使用可能ですが、私が実際に検証した以下を推奨します(GBPUSD、GBPCAD、GBPCHF、AUDCAD、AUDUSD、AUDSGD、AUDCHF、NZDUSD、NZDCAD、EURCAD、EURUSD、E
トレンドキャッチャーインジケーター トレンドキャッチャーインジケーターは、開発者独自の適応型トレンド分析指標を組み合わせることで、市場価格の動きを分析します。短期的なノイズを除去し、根底にあるモメンタムの強さ、ボラティリティの拡大、価格構造の挙動に焦点を当てることで、真の市場方向性を特定します。また、移動平均線、RSI、ボラティリティフィルターなどの平滑化およびトレンドフィルタリング機能を備えたカスタマイズ指標も使用します。 実際の運用状況のモニタリングやその他の製品については、こちらをご覧ください: https://www.mql5.com/en/users/mechanic/seller ご注意ください。私はTelegramでEAや設定を販売していません。詐欺です。すべての設定はブログで無料で公開しています。 重要!ご購入後すぐにご連絡ください。手順とボーナスをお送りします!
これはMT4のインジケーターで、再描画なしで取引に参入するための正確なシグナルを提供します。 外国為替、暗号通貨、金属、株式、インデックスなど、あらゆる金融資産に適用できます。かなり正確な見積もりを提供し、取引を開始して終了するのに最適な時期を教えてくれます。1つのシグナルを処理しただけでインジケーターの元が取れた例の 動画 (6:22)をご覧ください。Entry PointsPro インジケーターの助けを借りたほとんどのトレーダーの最初の1週間の結果が改善しています。 Telegramグループ に登録してください。Entry Points Proインジケーターのメリットは次の通りです。 再描画のないエントリーシグナル 再描画されるインジケーターでは一度表示されたシグナルが削除されて大きな金銭的損失につながることがありますが、これと異なり、表示されて確認されたシグナルは消えることがありません。 エラーなしの取引開始 インジケーターアルゴリズムによって取引を開始する(資産を売買する)理想的な瞬間を見つけることができます。それを使用するすべてのトレーダーの成功率が向上します。 あら
Advanced Supply Demand
Bernhard Schweigert
4.91 (300)
現在40%オフ 初心者にもエキスパートトレーダーにも最適なソリューション このインジケーターは独自の機能と新しい公式を多数内蔵しており、ユニークで高品質かつ手頃な取引ツールです。このアップデートでは、2つの時間枠ゾーンを表示できるようになります。より長いTFだけでなく、チャートTFとより長いTF(ネストゾーンを表示)の両方を表示できます。すべてのSupply Demandトレーダーの皆さんのお気に召すはずです。:) 重要情報の公開 Advanced Supply Demandの可能性を最大化するには、 https://www.mql5.com/ja/blogs/post/720245 にアクセスしてください。   エントリーまたはターゲットの正確なトリガーポイントを正確に特定できれば取引がどのように改善されるか想像してみてください。新しい基盤となるアルゴリズムに基づいて構築されているため、買い手と売り手の間の潜在的な不均衡をさらに簡単に特定できます。これは、最も強い需要と供給のゾーンと、過去のパフォーマンス(古いゾーンを表示)がグラフィカルに表現されるためです。これらの機能は、最適な
Introduction to Fractal Pattern Scanner Fractal Indicator refers to the technical indicator that makes use of the fractal geometry found in the financial market. Fractal Pattern Scanner is the advanced Fractal Indicator that brings the latest trading technology after the extensive research and development work in the fractal geometry in the financial market. The most important feature in Fractal Pattern Scanner is the ability to measure the turning point probability as well as the trend probabi
Market Structure Patterns   is an indicator based on   smart money concepts   that displays   SMC/ICT   elements that can take your trading decisions to the next level. Take advantage of the   alerts ,   push notifications   and   email messages   to keep informed from when an element is formed on the chart, the price crosses a level and/or enters in a box/zone. Developers can access the values of the elements of the indicator using the   global variables  what allows the automation of trading d
通貨強さウィザードは、取引を成功させるためのオールインワン ソリューションを提供する非常に強力な指標です。このインジケーターは、複数の時間枠のすべての通貨のデータを使用して、このまたはその外国為替ペアのパワーを計算します。このデータは、使いやすい通貨インデックスと通貨パワーラインの形式で表され、特定の通貨のパワーを確認するために使用できます。 必要なのは、取引したいチャートにインジケーターを接続することだけです。インジケーターは、取引する通貨の実際の強さを示します。このインジケーターは、トレンドに合わせて取引するときに有利に利用できる売買高の圧力の極値も示します。このインジケーターには、フィボナッチに基づく可能なターゲットも表示されます。 このインジケーターは、PUSH 通知を含むあらゆるタイプのアラートを提供します。 購入後ご連絡下さい。私の取引のヒントをあなたと共有し、素晴らしいボーナスインジケーターを無料で提供します! 幸せで有益な取引をお祈りします。
Auto Optimized Parabolic RSI: 高度な3Dモメンタムエンジン ほとんどのリテール向けインジケーターは、市場のボラティリティが変化した瞬間に破綻する静的な入力値に依存しているため、失敗に終わります。Auto Optimized Parabolic RSIは、自らの数学的優位性を継続的に再計算することで「インジケーターの陳腐化」問題を解決し、機関投資家レベルの定量的適応力をMT5ターミナルに直接もたらします。 最大の強み: カスタムインメモリ3D最適化   標準的な自動最適化ツールは、インジケーターの呼び出しで端末に過負荷をかけるため、頻繁にMT5プラットフォームをフリーズさせます。本ツールは、このボトルネックを完全に回避しています。RAMベースのカスタムネイティブ計算機を内蔵した内部エンジンは、チャートを読み込んだりタイムフレームを変更したりするたびに、超高速の3Dグリッド探索を実行します。RSI期間(頻度)、SARステップ(加速度)、SAR最大値(制限速度)を同時にスイープし、プラットフォームを遅延させることなく、数万通りものパラメーターの組み合わせを絶対的
CRT Candle Range Theory HTF MT4.   Ultimate CRT Indicator: Advanced ICT Concepts and Malaysian SnR Trading System Discounted   Price   $50  !!     Secure your lifetime access   now   before it switches to   subscription-only ! Master the Market Maker's Footprints with the Most Advanced Candle Range Theory Indicator Unlock the true power of   Smart Money Concepts (SMC)   and trade precisely like the institutions with the   Ultimate CRT Indicator . Built exclusively for serious traders, this indic
FX Power: 通貨の強弱を分析して、より賢い取引を実現 概要 FX Power は主要通貨と金の実際の強弱をあらゆる市場状況で理解するための必須ツールです。強い通貨を買い、弱い通貨を売ることで、 FX Power は取引の意思決定を簡素化し、高い確率の取引機会を見出します。トレンドを追従する場合でも、極端なデルタ値を使用して反転を予測する場合でも、このツールはあなたの取引スタイルに完全に適応します。ただ取引するだけではなく、 FX Power で賢く取引をしましょう。 1. なぜ FX Power がトレーダーにとって非常に有益なのか 通貨と金のリアルタイム強弱分析 • FX Power は主要通貨と金の相対的な強弱を計算し、マーケットダイナミクスに関する明確な洞察を提供します。 • どの資産がリードしているか、または後れを取っているかを監視して、取引するペアを賢く選びましょう。 マルチタイムフレームの包括的なビュー • 短期、中期、長期のタイムフレームで通貨と金の強弱を追跡し、マーケットトレンドに基づいて取引戦略を調整できます。 • スキャルピングからスイングトレード
NAM Order Blocks
NAM TECH GROUP, CORP.
3.67 (3)
MT4マルチタイムフレームオーダーブロック検出インジケーター。 特徴 -チャートコントロールパネルで完全にカスタマイズ可能で、完全な相互作用を提供します。 -必要な場所でコントロールパネルを表示および非表示にします。 -複数の時間枠でOBを検出します。 -表示するOBの数量を選択します。 -さまざまなOBユーザーインターフェイス。 -OBのさまざまなフィルター。 -OB近接アラート。 -ADRの高線と低線。 -通知サービス(画面アラート|プッシュ通知)。 概要 注文ブロックは、金融機関や銀行からの注文収集を示す市場行動です。著名な金融機関と中央銀行が外国為替市場を牽引しています。したがって、トレーダーは市場で何をしているのかを知る必要があります。市場が注文ブロックを構築するとき、それは投資決定のほとんどが行われる範囲のように動きます。 注文の構築が完了すると、市場は上向きと下向きの両方に向かって急激に動きます。注文ブロック取引戦略の重要な用語は、機関投資家が行っていることを含むことです。それらは主要な価格ドライバーであるため、機関投資家の取引を含むあらゆる戦
購入後、このインジケーターに基づいたボーナスEAを受け取るためにご連絡ください。 Self Optimizing Double MA Strategyは、パラメータ推測の必要性を排除するために設計されたプロフェッショナルグレードの取引ツールです。組み込みの自動最適化エンジンを搭載し、バックグラウンドで何千ものパラメータの組み合わせをシミュレートすることで、変化する市場状況に継続的に適応し、統計的な優位性を維持します。 静的で時代遅れの設定に依存するのではなく、インジケーターは自身のロジックを動的に更新し、現在の時間枠と取引商品にとって最も収益性の高い構成を見つけ出します。 主な機能 組み込みの自動最適化: 選択した更新頻度に基づいて、システムはFast MA、Slow MA、およびRSIの期間を定期的に再計算し、設定が常に現在の市場のリズムと一致するようにします。 MAダイバージェンスフィルター: 移動平均線が明確に乖離している(広がっている)場合にのみシグナルを検証する、トレンド強度のコア指標です。これにより、移動平均線が収束している相場や平坦なレンジ相場での誤ったエントリーを防ぎ
デイトレーダーマスターは、デイトレーダーのための完全なトレーディングシステムです。システムは2つのインジケーターで構成されています。 1つの指標は売買する矢印信号です。それはあなたが得る矢印インジケーターです。 2つ目のインジケーターを無料で提供します。 2番目のインジケーターは、これらの矢印と組み合わせて使用​​するために特別に設計されたトレンドインジケーターです。 インジケーターは繰り返さず、遅れないでください! このシステムの使用は非常に簡単です。 2色の線で表示されている現在のトレンドの方向に矢印信号をたどる必要があります。青は買いの傾向です。赤い色は売りの傾向です。青い矢印は買いシグナルです。赤い矢印は売りの合図です。トレンドラインの色と一致するように、矢印の色と信号の方向が必要です。 矢印インジケーターは、主に時間間隔M5とM15での日中取引のために作成されました。ただし、技術的には、システムは他の時間間隔で使用できます。 インジケータには、PUSHメッセージ機能を備えたポップアップアラートが装備されています。 購入後、必ず私に書いてください!私はあなたにシステムとの取引の
Candle Power Pro
Thushara Dissanayake
4.5 (8)
その   キャンドルパワープロ   は、解読するために設計された洗練された取引ツールです。     実ボリューム圧力、ティックデータの不均衡、機関投資家の注文フローのダイナミクス   測定することにより   強気相場と弱気相場の戦い   リアルタイムでこの指標は生の   ボリュームデータを実用的な洞察に 変換し、トレーダーが   スマートマネーの動き、流動性ハンティング、そして隠れた市場心理   各価格ローソク足の裏にあるものを分析することで   買い手/売り手の取引量の割合、乖離パターン、取引量に基づく確認など 、     価格行動とボリューム分析は 、トレーダーにとって非常に貴重です。       ICT、SMC、および機関投資家向け取引手法 。 従来のボリュームインジケーターとは異なり、     キャンドルパワープロ   焦点を当てる   ティックデータの粒度は 、各ローソク足の動きが基礎となる   強気/弱気の強さ   または潜在的な   マーケットメーカーの罠、反転、またはブレイクアウトの継続を 予測します。     セッションベースの戦略(ロンドン/ニューヨークのキルゾー
Cycle Sniper
Elmira Memish
4.39 (36)
Please contact us after your purchase and we will send you the complimentary indicators to complete the system Cycle Sniper is not a holy grail but when you use it in a system which is explained in the videos, you will feel the difference. If you are not willing to focus on the charts designed with Cycle Sniper and other free tools we provide, we recommend not buying this indicator. We recommend watching the videos about the indiactor and system before purchasing. Videos, settings  and descri
Route Lines Prices -は、価格の方向性を予測するために設計されたインジケーターです。シンプルなインターフェースには、価格変動と将来の方向性を計算するための複数のアルゴリズムが搭載されています。これらのアルゴリズムには、使用する時間枠に基づいたボラティリティ計算と価格平滑化が含まれています。 このインジケーターには、「 Calculating price values 」値を変更するためのパラメーターが1つだけあります。デフォルト値の1は、バランスの取れた自動計算を提供し、インジケーターを手動で設定することなく使用できます。 値を2から500まで手動で変更することで、インジケーターを独自のトレーディングシステムに合わせてカスタマイズできます。 このインジケーターは、M1からH4の時間枠での使用を推奨します。あらゆる取引銘柄で使用できます。 シグナル矢印はローソク足の終値で生成され、過去の履歴には再描画されません。 メインチャートには、重複した矢印が表示されます。 複数のアラートタイプが利用可能です。内蔵のライン軌跡カウンターは、終値に基づいて動作します。これ
ゴールドラッシュ・トレンド・アロー・シグナル ゴールドラッシュ・トレンド・アロー・シグナル 指標は、XAU/USDにおける高速・短期スキャルパー向けに最適化された、正確でリアルタイムのトレンド分析を提供します。 1分足専用に設計されたこのツールは、明確なエントリーポイントを示す方向矢印を表示し、スキャルパーが変動の激しい市場状況でも自信を持って取引できるよう支援します。 この指標は、PRIMARY(主要)とSECONDARY(補助)のアラート矢印で構成されています。PRIMARYシグナルは、トレンドの方向転換を示す白と黒の方向矢印であり、SECONDARYシグナルは、PRIMARY矢印が示す方向を確認し、潜在的なエントリーポイントを示す青と赤の矢印です。 注意:トレンド方向の変化後にPRIMARYアラート矢印が1つだけ表示される場合、複数のSECONDARY青/赤矢印が表示される点に注意が必要です。SECONDARYシグナルは、シグナル基準を満たす任意のローソク足後に表示されます。したがって、長期的なトレンド移動の場合、画面に多くのSECONDARY矢印が表示されます(添付の
CRYSTAL HEIKIN ASHI SIGNALS MT4 Professional Trend Detection Indicator with Smart Entry Signals See the Trend. Catch the Move. Trade with Confidence. The professional Heikin Ashi indicator built for traders who want clarity, precision, and EA-ready signal automation. WHAT IS CRYSTAL HEIKIN ASHI SIGNALS? Crystal Heikin Ashi Signals is a professional-grade MetaTrader 4 indicator that combines pure Heikin Ashi candle visualization with an advanced momentum-shift detection system. Designed for both
The Propfolio Master Suite is the ultimate all-in-one analytical workstation for professional traders. Combining the power of the Beat The Market Maker (BTMM) methodology, Smart Money Concepts (SND/Liquidity), and Advanced Volume Profile, this suite replaces multiple different indicators with one optimized engine. Monitor up to 14 pairs simultaneously from a single chart, instantly identify market cycles, and seamlessly map institutional footprints with the click of a button. The Command Center
チャートを構成し、周期的な価格変動を識別するテクニカル指標。 どのチャートでも動作します。 いくつかの種類の通知。 グラフ自体に追加の矢印があります。 履歴を再描画せずに、キャンドルのクローズに取り組みます。 M5以上のTFを推奨します。 パラメータの使用と設定が簡単です。 異なるパラメータを持つ 2 つのインジケーターを使用する場合、他のインジケーターなしで使用できます。 入力パラメータは2つあります 周期性と信号持続時間 これら 2 つのパラメータは、チャート構造の処理を扱います。 Cyclicity - 反転サイクルが変化する頻度を調整し、サイクルを滑らかにします。 Signal duration - 最小数では価格変動の衝動を検出し、最大数では長期的なトレンドの動きを検出します。
The indicator is built on a non-standard Zig Zag, it draws accumulations after which if the price leaves this zone and a test of this zone occurs, then a sound signal is given and an arrow appears - after the test candle closes.The indicator does not redraw its signals, it is very easy to use, there are only three settings 1- this is the zig zag parameter 2- this is the minimum price exit from the zone 3- this is the maximum price exit from the zone. The lower the parameter for Zig Zag, the more
作者のその他のプロダクト
Trading Viewで見かけたTMA - RSI DivergenceをMT4でも使えるように作成しました。 TMA RSI Divergence(TMA-RSIダイバージェンス)とは、 TMA( Triple Moving Average :三重加重移動平均) と RSI(Relative Strength Index:相対力指数) を組み合わせたテクニカル指標で、 価格とRSIの動きが逆行する「ダイバージェンス(逆行現象)」を検出する際に使われる手法です 。 通常RSI単体で見るのではなく、 RSIをTMAで平滑化(スムージング) し、 TMAライン自体をRSIの代わりに使う ことで、相場の転換点やトレンドの弱まりを、より明確に、そして長期的な視点で捉えることを目指します。   仕組みと特徴 RSIの平滑化 : 通常のRSIのノイズ(小さな値動き)を、TMAで平均化することで、トレンドの方向性や強い転換シグナルを際立たせます。 TMAをRSIの代わりに : TMA自体をオシレーター(買われすぎ・売られすぎを示す指標)として使い、価格とのダイバージェンスを見ることもあります。 5
FREE
Trading Viewで見かけたTMA - RSI DivergenceをMT5でも使えるように作成しました。 TMA RSI Divergence(TMA-RSIダイバージェンス)とは、 TMA( Triple Moving Average :三重加重移動平均) と RSI(Relative Strength Index:相対力指数) を組み合わせたテクニカル指標で、 価格とRSIの動きが逆行する「ダイバージェンス(逆行現象)」を検出する際に使われる手法です 。 通常RSI単体で見るのではなく、 RSIをTMAで平滑化(スムージング) し、 TMAライン自体をRSIの代わりに使う ことで、相場の転換点やトレンドの弱まりを、より明確に、そして長期的な視点で捉えることを目指します。   仕組みと特徴 RSIの平滑化 : 通常のRSIのノイズ(小さな値動き)を、TMAで平均化することで、トレンドの方向性や強い転換シグナルを際立たせます。 TMAをRSIの代わりに : TMA自体をオシレーター(買われすぎ・売られすぎを示す指標)として使い、価格とのダイバージェンスを見ることもあります。 5
FREE
MAD Bands(Moving Average Deviation Bands) MAD Bands は、価格に対するボラティリティの挙動を移動平均との関係から視覚的に確認したい場合に利用することを想定しています。 MAD_Bands (MQL5版) パラメータ解説 このドキュメントでは、各設定項目(Inputパラメータ)について、MT5のパラメータ入力画面を解説します。 Group: Main (基本設定) Period 初期値 :     20 解説 : 移動平均線(Mid)やバンド幅の計算に使用するローソク足の本数です。数値を大きくすると線が滑らかになりますが、反応は遅くなります。 Shift 初期値 :     0 解説 : インジケータの描画位置を左右にずらします。通常は     0     です。 Center Method 初期値 :     EMA 解説 : 中心線(Midライン)の計算ロジックを選択します。 SMA : 単純移動平均 EMA : 指数平滑移動平均(直近重視) WMA : 加重移動平均 SMMA : 平滑移動平均(長期目線) ZLMA : ゼロラグ
FREE
MADBandProパラメータマニュアル MADBandPro  は、従来のボリンジャーバンドやケルトナーチャネルの概念を超え、中央値(Median)やロバスト統計(MAD: Median Absolute Deviation)を選択可能な高機能バンドツールです。 Pro版では、従来のMADBandに加え、マルチタイムフレーム(MTF)分析や充実したアラート機能を搭載しています。 以下に、全パラメータおよび選択肢の詳細を解説します。 1. Main (基本設定) Timeframe (時間足) 初期値 :   current   (現在の時間足) 解説 : 計算に使用する時間足を選択します。 MTF(マルチタイムフレーム)機能 : ここで現在のチャートより「上位」の時間足(例:M5チャートでH1を選択)を指定すると、上位足のバンドを現在のチャートに重ねて表示します。 同期補正 : MTFモード時、データ読み込みの遅延による表示ズレを防ぐ自動同期機能が働きます。 Period (期間) 初期値 :   20 解説 : 移動平均や偏差を計算する期間の長さです(ローソク足の本数)。 Shif
フィルタ:
レビューなし
レビューに返信