オン バランス ボリューム式
オン バランス ボリューム式は、正および負の出来高のフローを測定します。
Chart.DataManipulator.FinancialFormula(
FinancialFormula.OnBalanceVolume,
"Close,Volume",
"OBV")
この式は、2 つの Y 値を入力します。
Close
1 日の終値。Volume
1 日のボリューム。
この式は、1 つの Y 値を出力します。
- OBV
オン バランス ボリューム インジケーター。
折れ線グラフは、式の出力を表示するときに便利なグラフの種類です。
次の例では、1 日の終値には Series1 の Y 値 (Series1:Y4)、1 日のボリュームには Series2 の Y 値を使用し、Series3 にオン バランス ボリューム インジケーター (Series3:Y) を出力します。
Chart1.DataManipulator.FinancialFormula (FinancialFormula.OnBalanceVolume, "Series1:Y4,Series2:Y", "Series3:Y")
Chart1.DataManipulator.FinancialFormula (FinancialFormula.OnBalanceVolume, "Series1:Y4,Series2:Y", "Series3:Y");
System.Windows.Forms.DataVisualization.Charting