Table of Contents

Class VolumeProfileIndicator

Namespace
StockSharp.Algo.Indicators
Assembly
StockSharp.Algo.dll

Volume profile.

[Display(ResourceType = typeof(LocalizedStrings), Name = "VolumeProfile", Description = "VolumeProfile")]
[IndicatorIn(typeof(CandleIndicatorValue))]
[IndicatorOut(typeof(VolumeProfileIndicator.VolumeProfileIndicatorValue))]
public class VolumeProfileIndicator : BaseIndicator, IIndicator, IPersistable, ICloneable<IIndicator>, ICloneable
Inheritance
VolumeProfileIndicator
Implements
IPersistable
ICloneable<IIndicator>
Inherited Members
Extension Methods

Remarks

Constructors

VolumeProfileIndicator()

Initializes a new instance of the VolumeProfileIndicator.

public VolumeProfileIndicator()

Properties

Step

The grouping increment.

public decimal Step { get; set; }

Property Value

decimal

UseTotalVolume

To use aggregate volume in calculations (when candles do not contain VolumeProfile).

public bool UseTotalVolume { get; set; }

Property Value

bool

Methods

OnProcess(IIndicatorValue)

To handle the input value.

protected override IIndicatorValue OnProcess(IIndicatorValue input)

Parameters

input IIndicatorValue

The input value.

Returns

IIndicatorValue

The resulting value.