Class BollingerBand
Полоса Боллинджера.
Inherited Members
Namespace: StockSharp.Algo.Indicators
Assembly: StockSharp.Algo.dll
Syntax
public class BollingerBand : BaseIndicator, IIndicator, IPersistable, ICloneable<IIndicator>, ICloneable
Constructors
BollingerBand(LengthIndicator<Decimal>, StandardDeviation)
Создать BollingerBand.
Declaration
public BollingerBand(LengthIndicator<Decimal> ma, StandardDeviation dev)
Parameters
Type | Name | Description |
---|---|---|
LengthIndicator<Decimal> | ma | Moving Average. |
StandardDeviation | dev | Standard deviation. |
Properties
Width
Channel width.
Declaration
public Decimal Width { get; set; }
Property Value
Type | Description |
---|---|
Decimal |
Methods
Load(SettingsStorage)
Загрузить настройки.
Declaration
public override void Load(SettingsStorage storage)
Parameters
Type | Name | Description |
---|---|---|
Ecng.Serialization.SettingsStorage | storage | Хранилище настроек. |
Overrides
OnProcess(IIndicatorValue)
Обработать входное значение.
Declaration
protected override IIndicatorValue OnProcess(IIndicatorValue input)
Parameters
Type | Name | Description |
---|---|---|
IIndicatorValue | input | Входное значение. |
Returns
Type | Description |
---|---|
IIndicatorValue | Результирующее значение. |
Overrides
Save(SettingsStorage)
Сохранить настройки.
Declaration
public override void Save(SettingsStorage storage)
Parameters
Type | Name | Description |
---|---|---|
Ecng.Serialization.SettingsStorage | storage | Хранилище настроек. |
Overrides
Implements
Ecng.Serialization.IPersistable
Ecng.Common.ICloneable<>