AdaptivePriceZone

StockSharp.Algo.Indicators

適応価格帯(APZ)インジケーター。

継承元: BaseComplexIndicator<IAdaptivePriceZoneValue>

コンストラクター

AdaptivePriceZone
public AdaptivePriceZone()
adaptivePriceZone = AdaptivePriceZone()

AdaptivePriceZone の新規インスタンスを初期化します。

AdaptivePriceZone
public AdaptivePriceZone(DecimalLengthIndicator ma)
adaptivePriceZone = AdaptivePriceZone(ma)

AdaptivePriceZone の新規インスタンスを初期化します。

ma
平均移動。

プロパティ

BandPercentage
public decimal BandPercentage { get; set; }
value = adaptivePriceZone.BandPercentage
adaptivePriceZone.BandPercentage = value

バンドパーセンテージは、上および下限のバンド計算の割合を占めます。

LowerBand
public AdaptivePriceZoneBand LowerBand { get; }
value = adaptivePriceZone.LowerBand

バンドを下げて下さい。

MovingAverage
public DecimalLengthIndicator MovingAverage { get; }
value = adaptivePriceZone.MovingAverage

平均移動。

Period
public int Period { get; set; }
value = adaptivePriceZone.Period
adaptivePriceZone.Period = value

MAと標準偏差計算の期間。

UpperBand
public AdaptivePriceZoneBand UpperBand { get; }
value = adaptivePriceZone.UpperBand

上部のバンド。

メソッド

CreateValue
protected override IAdaptivePriceZoneValue CreateValue(DateTime time)
result = adaptivePriceZone.CreateValue(time)

作成する

time
タイムタイム
Load
public override void Load(SettingsStorage storage)
adaptivePriceZone.Load(storage)

設定をロードします。

storage
設定ストレージ。
OnProcess
protected override IIndicatorValue OnProcess(IIndicatorValue input)
result = adaptivePriceZone.OnProcess(input)

入力値を処理するため。

input
入力値。

戻り値: 結果の値は。

Reset
public override void Reset()
adaptivePriceZone.Reset()

リセット状態。

Save
public override void Save(SettingsStorage storage)
adaptivePriceZone.Save(storage)

設定を保存します。

storage
設定ストレージ。