通常価格

サマリー

典型価格(Typical Price)は、単一の期間に対する高値、安値、終値の平均です。

備考

典型価格は、期間中のすべての価格を単一のシリーズとして簡略化して表示します。

シグネチャー

1
public abstract interface TypicalPrice

 

ネームスペース

cAlgo.API.Indicators

1
2
3
4
5
6
7
8
9
 private TypicalPrice _result;
 protected override void Initialize()
 {
     _result = Indicators.TypicalPrice();
 }
 public override void Calculate(int index)
 {
     double result = _result.Result[index];
 }

プロパティ

Result

サマリー

典型価格インジケーターの計算結果の時系列を取得します。

シグネチャー

1
public abstract IndicatorDataSeries Result {get;}

 

戻り値

IndicatorDataSeries

1
2
3
4
5
6
7
8
9
 private TypicalPrice _result;
 protected override void Initialize()
 {
     _result = Indicators.TypicalPrice();
 }
 public override void Calculate(int index)
 {
     double result = _result.Result[index];
 }
目次

このページについて