iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x

ISCIOhlcDataSeriesValues

@protocol ISCIOhlcDataSeriesValues <ISCIXDataSeriesValues>

Defines the interface to an OHLC DataSeries values, a series containing Open, High, Low, Close data-points.

  • Gets the Open Values of this series.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) id<ISCIList> _Nonnull openValues;

    Swift

    var openValues: ISCIList { get }
  • Gets the High Values of this series.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) id<ISCIList> _Nonnull highValues;

    Swift

    var highValues: ISCIList { get }
  • Gets the Low Values of this series.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) id<ISCIList> _Nonnull lowValues;

    Swift

    var lowValues: ISCIList { get }
  • Gets the Close Values of this series.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) id<ISCIList> _Nonnull closeValues;

    Swift

    var closeValues: ISCIList { get }