Class Acceleration
Acceleration / Deceleration Indicator.
Inherited Members
Namespace: StockSharp.Algo.Indicators
Assembly: StockSharp.Algo.dll
Syntax
[DescriptionLoc("Str835", false)]
public class Acceleration : BaseIndicator, IIndicator, IPersistable, ICloneable<IIndicator>, ICloneable
Remarks
Constructors
Acceleration()
Создать Acceleration.
Declaration
public Acceleration()
Acceleration(AwesomeOscillator, SimpleMovingAverage)
Создать Acceleration.
Declaration
public Acceleration(AwesomeOscillator ao, SimpleMovingAverage sma)
Parameters
Type | Name | Description |
---|---|---|
AwesomeOscillator | ao | Awesome Oscillator. |
SimpleMovingAverage | sma | Скользящая средняя. |
Properties
Ao
Awesome Oscillator.
Declaration
[DescriptionLoc("Str836", false)]
[CategoryLoc("General")]
public AwesomeOscillator Ao { get; }
Property Value
Type | Description |
---|---|
AwesomeOscillator |
IsFormed
Сформирован ли индикатор.
Declaration
public override bool IsFormed { get; }
Property Value
Type | Description |
---|---|
Boolean |
Overrides
Sma
Скользящая средняя.
Declaration
[DescriptionLoc("Str731", false)]
[CategoryLoc("General")]
public SimpleMovingAverage Sma { get; }
Property Value
Type | Description |
---|---|
SimpleMovingAverage |
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<>