OPEN-SOURCE SCRIPT

SMC/ICT Multi-TF Bias and POI Screener with Priority Dashboard

1 061
Overview
This indicator is a comprehensive Smart Money Concepts (SMC) / ICT-based multi-timeframe bias and Point of Interest (POI) screener. It evaluates market direction across three timeframes simultaneously — Anchor (HTF), Primary (MTF), and Local (LTF) — and identifies the most relevant POI (Fair Value Gap or Order Block) that price is approaching. A priority dashboard (S / A / B / C / D) tells the trader exactly whether to act now, prepare, wait, or stand aside, removing subjectivity from the decision process.
The core idea is that Smart Money moves in a top-down structure: higher timeframe bias defines the directional edge, and a trader should only look for entries at POIs that are aligned with that bias. This script automates that entire top-down filtering process.

How It Works
1. Multi-Timeframe Bias Engine
Bias is computed independently on each of three timeframes using a combination of two sub-signals:

・EMA Crossover: Fast EMA vs. Slow EMA relationship determines trend direction. An optional slope filter (Use slow EMA slope for Neutral filter) suppresses bias signals when the slow EMA slope is below a minimum threshold relative to ATR, preventing false signals during ranging conditions.
・Market Structure (HH/HL / LH/LL): Pivot-based swing structure is tracked using ta.pivothigh / ta.pivotlow. The script classifies each timeframe as Bullish (HH+HL), Bearish (LH+LL), Breaking Up (CHoCH bullish), Breaking Down (CHoCH bearish), or Unclear.

The two sub-signals are combined according to the Bias Logic setting:

・EMA only: Uses EMA crossover alone
・HH/HL only: Uses structure alone
・EMA + HH/HL agreement: Requires both signals to agree; outputs Neutral if they conflict
・EMA primary + HH/HL filter: EMA is the primary signal, but structure acting against EMA suppresses the bias to Neutral

The three timeframe bias values (Anchor, Primary, Local) are then combined according to Bias Mode:

・Anchor + Primary Aligned: Both must agree for a bias to be declared
・Primary + Anchor Filter: Primary is the main bias; Anchor acting against it raises a COUNTER_ANCHOR warning
・Primary Only / Anchor Only: Single-timeframe bias

2. POI Detection — Fair Value Gap (FVG) and Order Block (OB)
FVGs are detected on each of the three timeframes using a three-candle imbalance pattern (low[0] > high[2] for bullish, high[0] < low[2] for bearish). Optional filters include:

・Close confirmation: Requires the middle candle to close beyond the imbalance gap
・Auto threshold: Compares the middle candle's body size against a 100-bar average to eliminate small, low-quality imbalances
・Minimum FVG size / ATR: Rejects gaps below a minimum size relative to ATR
・Invalidation: A bullish FVG is invalidated when price closes (or wicks) below its lower boundary; bearish FVG when price closes (or wicks) above its upper boundary
・Max age: FVGs older than a preset bar count are discarded

OBs are detected using a range-breakout approach: the highest high / lowest low over a lookback window defines the boundary. A breakout above (below) triggers an Order Block from the most recent bearish (bullish) candle. High-volatility candles are parsed inversely (body is treated as shadow). OBs are invalidated when price closes back through the block.

3. POI Priority Selection
For both long and short directions, the script selects the single most relevant POI using a distance-to-price scoring system:

・Anchor FVG vs. Primary FVG: The closer one to current price is selected as the "HTF POI"
・HTF POI vs. Local FVG vs. OB: The closest of the three to price becomes the Active POI

This ensures the dashboard always displays the POI with the highest immediate relevance.

4. Priority Classification (S / A / B / C / D)
The priority code is the central output of the indicator:
Code | Meaning | Condition
-------|------------------------------------|----------------------------------
S | Act now — price inside POI | POI exists, bias aligned, inside
A | Prepare — price approaching | POI exists, bias aligned, near
B | Wait — setup valid, price far | POI exists, bias aligned, far
C | Low confidence — anchor opposes | COUNTER_ANCHOR active
D | Stand aside — no valid setup | No POI, no bias, or bias conflict

5. Warning System
Six independent warning flags are evaluated and displayed:

・LOCAL_CHOCH — Local timeframe is showing a Change of Character (CHoCH) against the primary bias, indicating a possible pullback or reversal
・HTF_DISTANCE_FAR — The HTF POI is far from current price (beyond max ATR threshold), suggesting the structural POI may be out of immediate reach
・COUNTER_TRADE — The active POI direction is opposite to the main bias (e.g., a bearish POI is selected while bias is bullish)
・PD_WARNING — Price is in an unfavorable Premium/Discount zone (bullish bias in premium zone, or bearish bias in discount zone)
・LATE_TREND — The trend has potentially extended too far: bias is bullish but HTF P/D shows Premium, with price outside the HTF POI
・COUNTER_ANCHOR — Primary bias is active but Anchor timeframe opposes it

6. Premium / Discount Range
Three separate P/D ranges are computed across Anchor, Primary, and Local timeframes using ta.highest / ta.lowest over configurable lookback periods. The midpoint of each range defines the equilibrium level. Price above midpoint = Premium (potential shorting area for bearish bias); price below = Discount (potential buying area for bullish bias). P/D levels are plotted as lines on the chart.

7. Alert System
Alerts fire at bar close when the priority code meets the configured threshold (S only, S or A, S A B). The alert payload is a structured JSON message containing all dashboard fields, suitable for use with external webhook receivers.

Originality
Most SMC/ICT indicators address only one aspect of the framework — bias, or FVGs, or OBs — and require the trader to manually combine them across timeframes. This indicator is original in the following ways:

1.Unified three-timeframe bias engine: EMA and market structure signals are combined with configurable logic, giving the trader full control over how confluence is defined

2.Distance-based POI priority selection: Rather than displaying all zones, the script automatically selects the single most actionable POI by ranking FVGs (Anchor, Primary, Local) and OBs by their distance to current price

3.Priority classification with Warning overlay: A structured S/A/B/C/D priority system, combined with six distinct warning flags, provides a single actionable output per bar rather than requiring the trader to interpret multiple indicators simultaneously

4.Preset system (Swing / Daytrade / Scalp / Custom): All timeframe and parameter combinations are driven by a single preset selector. This allows the indicator to behave consistently across different trading styles without manual reconfiguration

5.JSON alert payload: The alert message is structured JSON, enabling integration with external tools for multi-symbol scanning or automated notification workflows

Credits: Order Block and Premium/Discount concepts referenced from Smart Money Concepts (SMC) [LuxAlgo]. Market Structure (BOS/CHoCH) logic referenced from Market Structures + ZigZag [TradingFinder]. FVG detection structure referenced from Fair Value Gap [LuxAlgo]. All logic in this script has been substantially rewritten and extended with original multi-timeframe coordination, priority classification, and alert architecture.

How to Use
Step 1 — Select a Preset
Open the "Bias" group and choose one of the four presets:
Preset | Anchor | Primary | Local | Suited for
----------|--------|---------|-------|------------------
Swing | Daily | 4H | 1H | Multi-day swings
Daytrade | 4H | 1H | 15M | Intraday sessions
Scalp | 1H | 15M | 5M | Short-term scalps
Custom | User | User | User | Any configuration

Step 2 — Set Bias Logic
Choose how EMA and market structure signals are combined. The default EMA primary + HH/HL filter is recommended for most use cases: it uses the EMA crossover as the primary directional signal, but suppresses it when market structure is acting against that direction.

Step 3 — Monitor the Dashboard
The dashboard shows 16 rows of information. The most important rows are:
・Priority: The S/A/B/C/D code tells you immediately whether to act or wait
・Active Plan: "Long Watch" or "Short Watch" — the direction the indicator is currently tracking
・Action: A plain-language instruction (e.g., "Check Local TF now", "Wait for POI approach")
・Warning: Any active risk flags. If warnings are present, verify each condition before acting
・Active POI: The timeframe, type (FVG or OB), and direction of the current POI
・価格帯 (Price Range): The upper and lower boundary of the active POI zone
・現在位置 (Location): Whether price is inside the POI, approaching (WATCH distance), or still far

Step 4 — Read the POI Zone on the Chart
The active POI is drawn as an orange box by default. When price enters or approaches the zone and Priority S or A appears, switch to the Local timeframe chart and look for entry confirmation patterns (e.g., displacement candles, engulfing, CHoCH on even lower timeframes).

Step 5 — Set Alerts
In the "Alerts" group, select the minimum priority level for alerts (S only recommended for high-confidence entries). Enable Alert once per zone to avoid repeated alerts for the same POI. The alert message contains a complete JSON payload for webhook integration.

Parameter Reference
Bias Group
・Bias preset: Swing / Daytrade / Scalp / Custom. Drives all three timeframe selections and most default values simultaneously
・Custom only: anchor/primary/local TF: Active only when preset is Custom
・Bias mode: How the three TF biases are combined (see "How It Works")
・Bias logic: How EMA and structure sub-signals interact
・Anchor fast/slow EMA: EMA lengths for the Anchor timeframe bias
・Primary/Local fast/slow EMA: EMA lengths for Primary and Local timeframes (shared)
・Use slow EMA slope for Neutral filter: When enabled, a flat slow EMA suppresses the bias signal
・Slope lookback bars: Number of bars over which the EMA slope is measured
・Min slow EMA slope / ATR: Minimum slope-to-ATR ratio required to maintain a trend bias signal
・HH/HL pivot override: Override the pivot length for structure detection. - uses the preset value

Zones Group
・Track FVG / Track OB: Enable or disable each zone type
・Context mode: Fast uses only the Primary TF for context zones; Balanced adds Anchor TF FVGs
・Sync OB/PD timeframes with Bias preset: When enabled, OB and P/D timeframes follow the preset automatically
・Custom OB timeframe: Active when sync is disabled
・Max zone age override: Maximum bar age for any zone to remain active (- = preset)
・Anchor/Primary/Local FVG age override: Per-timeframe FVG age limits
・Min FVG size / ATR override: Minimum gap size as a ratio of ATR
・Require FVG close confirmation: Requires middle candle to close through the gap
・Use FVG auto threshold: Filters small FVGs relative to the 100-bar average candle body
・FVG invalidation source: Close uses closing price; Wick uses the high/low wick for invalidation
・OB pivot override: Pivot length for OB range calculation
・WATCH distance / ATR: Distance from POI at which Priority upgrades from B to A
・Max active POI distance / ATR: POIs farther than this from price are flagged with HTF_DISTANCE_FAR

Premium / Discount Group
・Custom PD range timeframe: Timeframe for the main P/D range (active when sync is off)
・PD lookback override: Lookback for the main P/D high/low range
・Custom HTF PD timeframe / lookback: Anchor-level P/D range
・Custom LTF PD timeframe / lookback: Local-level P/D range

Alerts Group
・Send priority alerts: Master enable for dynamic alerts
・Alert priority: Minimum code level to trigger (S only, S or A, S A B)
・Alert once per zone: Prevents repeated alerts for the same POI

Visuals Group
・Show active zone: Draws the active POI box on the chart
・Show long/short scenario zones: Draws both long and short POI boxes simultaneously (for reviewing both scenarios)
・Show context zones: Draws the HTF FVG and OB zones separately for reference
・Show PD high/low/mid levels: Plots P/D range boundaries and midpoint as lines
・Show dashboard: Enables or disables the dashboard table
・Dashboard position: Corner of the chart for the dashboard
・POI label offset bars: Number of bars to the right of the POI label


Preset Default Values Reference
Parameter | Swing | Daytrade | Scalp
------------------------|---------|-----------|------
Anchor TF | D | 4H | 1H
Primary TF | 4H | 1H | 15M
Local TF | 1H | 15M | 5M
Structure pivot | 9 | 7 | 5
Max zone age (bars) | 180 | 120 | 80
Min FVG size / ATR | 0.08 | 0.10 | 0.12
OB pivot length | 4 | 3 | 2
WATCH distance / ATR | 0.75. | 0.50 | 0.35
Max POI distance / ATR | 5.00 | 3.00 | 2.00
PD lookback (bars) | 60 | 50 | 40

All override fields default to -, which applies the preset value. To customize individual parameters without changing the preset, enter a numeric value in the corresponding override field.

Important Limitations

This indicator is a decision-support tool. It does not guarantee future price behavior. All signals should be confirmed with price action analysis on the local timeframe before any trade is taken.
Backtest results from strategy tools do not apply to this indicator, which is an overlay indicator with no automated trade execution.
FVG and OB detection is based on the most recent valid zone per timeframe. In strongly trending markets, zones may be invalidated quickly and re-established at new levels.
The P/D range is calculated using a fixed lookback window. In trending markets, the midpoint may not represent a meaningful equilibrium.


説明文(日本語)

概要
 このインジケーターは、スマートマネーコンセプト(SMC)/ ICTの手法をベースに、3つの時間軸(アンカー・プライマリ・ローカル)のバイアスを同時に評価し、最も優先度の高いPOI(ポイント・オブ・インタレスト:FVGまたはオーダーブロック)を特定するマルチタイムフレーム・スクリーナーです。
 ダッシュボードに表示される優先度コード(S / A / B / C / D)が、「今すぐ確認」「接近中・準備」「待機」「見送り」をトレーダーに明確に伝えます。複数の指標を目視で組み合わせる作業を自動化し、トップダウン分析の判断プロセスをシンプルにすることが目的です。

ロジックの説明
1. マルチタイムフレーム・バイアスエンジン
 バイアスは3つの時間軸それぞれで、2つのサブシグナルを組み合わせて計算されます。

・EMAクロス: ファストEMAとスローEMAの位置関係でトレンド方向を判定。オプションのスロープフィルター(スローEMAスロープでニュートラルフィルター)を有効にすると、スローEMAの傾きがATR比で閾値を下回る局面ではバイアスをニュートラルに抑制し、レンジ相場でのダマシを減らします。
・市場構造(HH/HL / LH/LL): ta.pivothigh / ta.pivotlowを使ってスウィング構造を追跡。各時間軸をBullish(HH+HL)・Bearish(LH+LL)・上昇転換(Bullish CHoCH)・下降転換(Bearish CHoCH)・不明確のいずれかに分類します。

この2つのサブシグナルはバイアスロジック設定により組み合わせ方が変わります。

・EMA only: EMAクロスのみ使用
・HH/HL only: 市場構造のみ使用
・EMA + HH/HL agreement: 両方が一致する場合のみバイアス確定、不一致はニュートラル
・EMA primary + HH/HL filter(推奨): EMAを主軸とし、市場構造が逆を示す場合はニュートラルに切り替え

3時間軸のバイアスはバイアスモードで最終的に合算されます。

・Anchor + Primary Aligned: アンカーとプライマリが一致する場合のみバイアス確定
・Primary + Anchor Filter: プライマリを主軸、アンカーが逆の場合はCOUNTER_ANCHOR警告
・Primary Only / Anchor Only: 単一時間軸バイアス

2. POI検出 — FVGとオーダーブロック(OB)
 FVGは3時間軸それぞれで3本足のインバランスパターンから検出されます(low[0] > high[2]でBullish、high[0] < low[2]でBearish)。以下のフィルターを組み合わせて高品質のFVGのみを残します。

・クローズ確認: 中間足が必ずギャップを抜けてクローズすることを要求
・自動閾値: 中間足のボディサイズを100本平均と比較し、小さすぎるFVGを除外
・最小FVGサイズ / ATR比: ATR対比で一定以上の大きさのFVGのみ採用
・無効化: BullishFVGは下限を割り込むと消滅、BearishFVGは上限を上抜けると消滅
・最大バー数: 指定バー数を超えた古いFVGは自動的に破棄

 OBは、ルックバック期間の最高値・最安値を基準にしたレンジブレイクアウトで検出。上抜け時は直近の陰線をBullish OBとして、下抜け時は直近の陽線をBearish OBとして記録。高ボラティリティ足はボディとヒゲを逆に処理します。

3. POI優先度選択(距離スコアリング)
ロング・ショートそれぞれについて、以下の順序で「最も現在値に近いPOI」を自動選択します。

・アンカーFVG vs. プライマリFVG → 近い方を「HTF POI」として採用
・HTF POI vs. ローカルFVG vs. OB → 3者のうち最も近いものをアクティブPOIとして採用

これにより、ダッシュボードには常に「今最も価格が向かいやすいPOI」が一つだけ表示されます。

4. 優先度コード(S / A / B / C / D)
コード | 意味 | 条件
-------|-----------------------------------|----------------------------------
S | 即監視:価格がPOI内にある. | POIあり・バイアス一致・POI内
A | 高優先:POIに接近中 | POIあり・バイアス一致・WATCH距離内
B | 通常監視:価格は遠い | POIあり・バイアス一致・WATCH距離外
C | 低優先:アンカーが逆方向 | COUNTER_ANCHOR状態
D | 見送り:有効なセットアップなし | POIなし・バイアスなし・競合

5. 警告システム

6種類の独立した警告フラグが評価・表示されます。
・LOCAL_CHOCH: ローカル足がプライマリバイアスに逆らうCHoCH(転換シグナル)を発生。押し目または反転の可能性を示唆
・HTF_DISTANCE_FAR: HTF POIが現在値から遠すぎる(ATR閾値超過)。即座にPOIに到達する可能性が低い
・COUNTER_TRADE: アクティブPOIの方向がメインバイアスと逆。逆張り的なセットアップを監視中
・PD_WARNING: 価格が不利なPremium/Discountゾーンにある(Bullishバイアスなのにプレミアム、など)
・LATE_TREND: トレンドが延びすぎている可能性。BullishバイアスなのにHTF P/DがPremiumで、HTF POI外に位置
・COUNTER_ANCHOR: プライマリバイアスが有効だがアンカーTFが逆方向

6. Premium / Discountレンジ
 アンカー・プライマリ・ローカルの3つの時間軸で、それぞれta.highest / ta.lowestを使って価格レンジを計算。各レンジの中間点(ミッドポイント)が均衡価格の目安となります。中間点より上がPremium(高値圏)、下がDiscount(安値圏)。P/Dの高値・安値・中間点はチャートにラインとして表示されます。

7. アラートシステム
 優先度コードが設定した閾値(S only、S or A、S A B)を満たす場合、バークローズ時にアラートが発火します。アラートメッセージはJSON形式で、ダッシュボードの全フィールドを含んでいます。Webhookを使った外部ツール連携に対応しています。

オリジナリティ
 SMC/ICTに関するインジケーターの多くは、バイアス・FVG・OBのいずれか一側面のみを扱うか、複数の概念を並列表示するだけで、トレーダー自身が手動で組み合わせる必要があります。本インジケーターは以下の点でオリジナルな設計を持ちます。

1.統合された3時間軸バイアスエンジン: EMAと市場構造の2シグナルを設定可能なロジックで組み合わせることで、「コンフルエンスの定義」をトレーダーが制御できる
2.距離スコアリングによるPOI自動選択: 全ゾーンを表示するのではなく、価格からの距離を基準に最もアクション優先度の高い単一POIを自動的に選択する
3.優先度コード + 6種類の警告フラグの統合: 複数の指標を目視で解釈する代わりに、S/A/B/C/Dという単一の判断コードと詳細な警告情報を出力する
4.プリセットシステム(Swing / Daytrade / Scalp / Custom): 1つのプリセット選択で全時間軸とパラメーターが一括で最適化される
5.JSON形式のアラートペイロード: Webhook対応の構造化されたアラートで、複数銘柄スクリーニングや外部通知ワークフローへの統合が可能

クレジット: オーダーブロック・Premium/Discountの概念はSmart Money Concepts (SMC) [LuxAlgo]を、市場構造(BOS/CHoCH)ロジックはMarket Structures + ZigZag [TradingFinder]を、FVG検出構造はFair Value Gap [LuxAlgo]を参考にしています。本スクリプト内のすべてのロジックは実質的に独自に再設計・拡張されています。

使い方
ステップ1 : プリセットを選ぶ
「Bias」グループで取引スタイルに合ったプリセットを選択します。

プリセット | アンカー | プライマリ | ローカル | 用途
------------|----------|------------|----------|------------------
Swing | 日足 | 4時間 | 1時間 | 複数日のスウィング
Daytrade | 4時間 | 1時間 | 15分 | 日中トレード
Scalp | 1時間 | 15分 | 5分 | 短期スキャルプ
Custom | 任意 | 任意 | 任意 | カスタム構成

ステップ2 : バイアスロジックを確認する
デフォルトのEMA primary + HH/HL filterは、EMAクロスを主軸としながら市場構造のフィルターが逆行時に安全弁として機能します。明確なトレンド相場ではほとんどの状況で適切に動作します。

ステップ3 : ダッシュボードを読む
ダッシュボードは16行の情報を表示します。最重要項目は以下です。
・Priority(優先度): S/A/B/C/Dコード。これだけ見れば即座に行動基準がわかります
・Active Plan: "Long Watch"または"Short Watch" — 現在どちらの方向を監視しているか
・Action: 平易な日本語での推奨行動(「今すぐローカルTF確認」「POI接近まで待つ」など)
・Warning(警告): 有効な警告フラグ。警告がある場合は各内容を確認してからエントリーを判断
・Active POI: アクティブなPOIの時間軸・種類(FVG/OB)・方向
・価格帯: アクティブPOIの上限・下限
・現在位置: POI内 / POI接近 / 通過注意 / POI待ち のいずれか

ステップ4 : チャート上のPOIゾーンを確認する
アクティブPOIはデフォルトでオレンジのボックスとして描画されます。価格がゾーン内に入りPriorityがSまたはAになったら、ローカル足チャートに切り替えてエントリー根拠(ディスプレイスメント、エンゲルフィング、下位足CHoCHなど)を確認します。

ステップ5 : アラートを設定する
「Alerts」グループで優先度閾値を選択します(高確度エントリーのみ追うならS onlyを推奨)。Alert once per zoneを有効にすると、同一POIでのアラートの重複を防ぎます。

パラメーター解説
Biasグループ
パラメーター | 内容
--------------------------------|------------------------------------------
Bias preset | Swing/Daytrade/Scalp/Custom
| 選択するだけで全TFとデフォルト値が一括設定
Custom only: anchor/primary/ | Custom選択時のみ有効
local TF | 任意の時間軸を指定
Bias mode | 3時間軸バイアスの合算方法
Bias logic | EMAと市場構造の組み合わせ方
Anchor fast/slow EMA | アンカーTFのEMA期間
Primary/Local fast/slow EMA | プライマリ・ローカル共通のEMA期間
Use slow EMA slope for | スローEMAの傾きが小さい場合に
Neutral filter | バイアスをニュートラルに抑制
Slope lookback bars | EMAスロープを計算するバー数
Min slow EMA slope / ATR | バイアス維持に必要な最小スロープ比率
HH/HL pivot override | 市場構造検出のピボット長を上書き
| "-"でプリセット値を使用

Zonesグループ
パラメーター | 内容
---------------------------------|------------------------------------------
Track FVG / Track OB | 各ゾーンタイプの有効/無効
Context mode | Fast=プライマリTFのみ
| Balanced=アンカーTFのFVGも追加
Sync OB/PD timeframes | ONにするとOB・P/DのTFがプリセットに連動
Max zone age override | ゾーンの最大バー数(古いゾーンを無効化)
Min FVG size / ATR override | FVGの最小サイズ(ATR倍率)
Require FVG close confirmation | FVG中間足クローズ確認を要求
Use FVG auto threshold | 100本平均対比で小さいFVGを除外
FVG invalidation source | 無効化判定:Close=終値 / Wick=ヒゲ
WATCH distance / ATR | 優先度BからAに格上げされる距離
Max active POI distance / ATR | 超過でHTF_DISTANCE_FAR警告が発動

Premium / Discountグループ
パラメーター |内容
---------------------------------|-----------------------------------------
PD lookback override. |メインP/Dレンジの計算期間
HTF / LTF PD lookback override. |アンカー・ローカルP/Dレンジの計算期間

Alertsグループ
パラメーター | 内容
-----------------------|--------------------------------
Send priority alerts | アラート送信のマスタースイッチ
Alert priority | 発火させる最低優先度コード
Alert once per zone | 同一POIへの重複アラートを防止

Visualsグループ
パラメーター | 内容
------------------------------|------------------------------------------
Show active zone | アクティブPOIのボックスを描画
Show long/short scenario | ロング・ショット両シナリオのゾーンを同時表示
Show context zones | HTF FVGとOBのゾーンを別途描画(参考用)
Show PD high/low/mid levels | P/Dレンジの高値・安値・中間点をラインで表示
Dashboard position | ダッシュボードの表示位置(4隅から選択)
POI label offset bars | POIラベルの右オフセット(バー数)

プリセット別デフォルト値一覧
パラメーター | Swing | Daytrade | Scalp
-------------------------|--------|-----------|------
アンカーTF | 日足. | 4時間 | 1時間
プライマリTF | 4時間. | 1時間 | 15分
ローカルTF | 1時間 | 15分 | 5分
構造ピボット長 | 9 | 7 | 5
ゾーン最大バー数 | 180 | 120 | 80
最小FVGサイズ / ATR | 0.08. | 0.10. | 0.12
OBピボット長 | 4 | 3 | 2
WATCH距離 / ATR | 0.75. | 0.50 | 0.35
最大POI距離 / ATR | 5.00 | 3.00 | 2.00
PDルックバック(バー) | 60 | 50 | 40

 各オーバーライドフィールドのデフォルトは-で、プリセット値がそのまま適用されます。プリセットを変えずに個別パラメーターだけ調整したい場合は、対応するフィールドに数値を入力してください。

注意事項

 本インジケーターは意思決定支援ツールです。将来の価格動向を保証するものではありません。すべてのシグナルはローカル足でのプライスアクション確認後に判断してください。
 FVGとOBの検出は、各時間軸ごとに「最も新しい有効ゾーン1件」を追跡します。強いトレンド相場では、ゾーンが短時間で無効化・再設定されることがあります。
 P/Dレンジは固定のルックバック期間で計算されるため、強いトレンド相場では中間点が必ずしも有効な均衡水準を示さない場合があります。

คำจำกัดสิทธิ์ความรับผิดชอบ

ข้อมูลและบทความไม่ได้มีวัตถุประสงค์เพื่อก่อให้เกิดกิจกรรมทางการเงิน, การลงทุน, การซื้อขาย, ข้อเสนอแนะ หรือคำแนะนำประเภทอื่น ๆ ที่ให้หรือรับรองโดย TradingView อ่านเพิ่มเติมใน ข้อกำหนดการใช้งาน