イーズ オブ ムーブメント式
イーズ オブ ムーブメント式は、終値と出来高を使用して、価格動向の強度を測定します。ゼロに近い値は価格があまり動かないことを示し、正の大きい値は価格が上がりやすいことを示し、負の大きい値は価格が下がりやすいことを示します。
式の詳細
構文
Chart.DataManipulator.FinancialFormula(
FinancialFormula.EaseOfMovement,
"Close,Volume",
"EOM")
入力値
この式は、3 つの Y 値を入力します。
High
1 日の高値。Low
1 日の安値。Volume
1 日のボリューム。
出力値
この式は、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