チャート

ボリンジャー バンド (BB)

ボリンジャー バンド (BB)

ボリンジャー バンド (BB、Bollinger Band) は、ジョン・ボリンジャー (John Bollinger) が考案した分析手法で、銘柄の移動平均線を中央に、上部と下部にエンベロップを描線します。バンド幅は、終値の移動平均からの標準偏差に基づいています。

Configuration Options

  • : 平均計算のベースに使用する価格、または価格の組み合わせ。以下の値があります。
    • Open (始値)
    • High (高値)
    • Low (安値)
    • Close (終値)
    • Adjusted Close (調整終値)
    • HL/2 \( \left ( \frac{High + Low}{2} \right ) \)
    • HLC/3 \( \left ( \frac{High + Low + Close}{3} \right ) \)
    • HLCC/4 \( \left ( \frac{High + Low + Close + Close}{4} \right ) \)
    • OHLC/4 \( \left ( \frac{Open + High + Low + Close}{4} \right ) \)
  • Period (ピリオド): 計算で使用されるバー数。
  • Standard Deviations (標準偏差): バンドを描画する平均より上と下の標準偏差数。
  • Moving Average Type: Type of moving average to use in the calculations:
    • Simple
    • Exponential
    • Time Series
    • Triangular
    • Variable
    • VIDYA
    • Weighted
    • Welles Winder
    • Hull
    • Double Exponential
    • Triple Exponential
  • Channel Fill (チャネル フィル): 上部バンドと下部バンド間の部分を網掛け表示するかどうかを決定します。
  • Color Selectors (配色セレクター): グラフ要素に使用する配色。
  • Display Axis Label (軸ラベルの表示): Y 軸に最新値を表示するかどうか。

数式

\[Middle\;Band = n\text{-}period\;moving\;average\]

\[Upper\;Band = Middle\;Band\;+\;\left ( y \times n\text{-}period\;Standard\;Deviation\right ) \]

\[Lower\;Band = Middle\;Band\;-\;\left ( y \times n\text{-}period\;Standard\;Deviation\right ) \]

該当:

\[ Standard\;Deviation = \sqrt{d}\]

\[ d = \frac{(P_{1}-MA)^{2}+(P_{2}-MA)^{2}+...+(P_{n}-MA)^{2}}{n}\]

該当時

\[ P_{n} =\;the\;user\;defined\;bar\;value\;of\;the\;n^{th}\;bar\]

\[ MA =\;the\;user\;defined\;n\text{-}period\;moving\;average\]