次の方法で共有


イーズ オブ ムーブメント式

イーズ オブ ムーブメント式は、終値と出来高を使用して、価格動向の強度を測定します。ゼロに近い値は価格があまり動かないことを示し、正の大きい値は価格が上がりやすいことを示し、負の大きい値は価格が下がりやすいことを示します。

FinancialFormulaEaseOfMovement

式の詳細

Dd456750.collapse_all(ja-jp,VS.140).gif構文

Chart.DataManipulator.FinancialFormula(
    FinancialFormula.EaseOfMovement,
    "Close,Volume",
    "EOM")

Dd456750.collapse_all(ja-jp,VS.140).gif入力値

この式は、3 つの Y 値を入力します。

  • High
    1 日の高値。

  • Low
    1 日の安値。

  • Volume
    1 日のボリューム。

Dd456750.collapse_all(ja-jp,VS.140).gif出力値

この式は、1 つの Y 値を出力します。

  • EOM
    イーズ オブ ムーブメント インジケーター。

解説

折れ線グラフは、式の出力を表示するときに便利なグラフの種類です。指数移動平均を同じグラフに描画する場合にも有効です。

使用例

次の例では、イーズ オブ ムーブメント インジケーターを計算してから、イーズ オブ ムーブメント インジケーターの指数移動平均を計算します。

' Calculate the ease of movement
Chart1.DataManipulator.FinancialFormula (FinancialFormula.EaseOfMovement, "Series1:Y,Series1:Y2,Series2:Y", "Series3:Y")

' Calculate its exponential moving average
Chart1.DataManipulator.FinancialFormula (FinancialFormula.ExponentialMovingAverage,"14", "Series3:Y", "Series4:Y")
// Calculate the ease of movement
Chart1.DataManipulator.FinancialFormula (FinancialFormula.EaseOfMovement, "Series1:Y,Series1:Y2,Series2:Y", "Series3:Y");

// Calculate its exponential moving average
Chart1.DataManipulator.FinancialFormula (FinancialFormula.ExponentialMovingAverage,"14", "Series3:Y", "Series4:Y");

参照

関連項目

指数移動平均式

System.Windows.Forms.DataVisualization.Charting

System.Web.UI.DataVisualization.Charting

概念

財務に関する式

式の適用