歴史的ボラティリティ

cBots (自動売買)

概要

特定の期間における価格変動の測定値。

備考

インジケーターの値が高いほど、その金融商品がよりボラティリティが高いことを示します。

シグネチャ

1
public abstract interface HistoricalVolatility

 

名前空間

cAlgo.API.Indicators

1
2
3
4
5
6
7
8
9
 private HistoricalVolatility historicalVolatility;
    private const int BarHistory = 252;
    [Parameter("Period", DefaultValue = 14)]
    public int Period { get; set<span="p">; }
    protected override void Initialize()
    {
     historicalVolatility = Indicators.HistoricalVolatility
         (MarketSeries.Close<span="p">, Period<span="p">, BarHistory);
    }

プロパティ

Result

概要

HistoricalVolatilityインジケーターの結果

シグネチャ

1
public abstract IndicatorDataSeries Result {get<span="p">;}

 

戻り値

IndicatorDataSeries

1
2
3
4
5
 public override void Calculate(int index<span="p">)
 {
     Print("Historical Volatility = {0}",
          _historicalVolatility.Result<span="p">[index<span="p">]);
        }
目次

このページについて