Click or drag to resize

BufferSize Enumeration

In an Indicator (or Strategy) you may define one or more ISeriesT. The number of data points a series can have depends on the BufferSize property, unless explicitly defined. This makes the IndicatorBase object more memory efficient particularly when the Indicator or Strategy have multiple SeriesT defined.

Namespace: ArthaChitra.Model.SharpScript
Assembly: ArthaChitra.Core (in ArthaChitra.Core.dll) Version: 2.0.3.0
Syntax
C#
public enum BufferSize
Members
Member nameValueDescription
Infinite0 The SeriesT data points equals the Count
Eight8 The SeriesT will have eight data point
TwoFiftySix256 The SeriesT will have two hundred and fifty six data points.
See Also