ChartIQCrosshairHUD

public class ChartIQCrosshairHUD : NSObject

Encapsulates parameters with additional information for the data provided by CrosshairHUD.

Properties

  • The ChartIQCrosshairHUD price parameter.

    Declaration

    Swift

    public var price: String
  • The ChartIQCrosshairHUD volume parameter.

    Declaration

    Swift

    public var volume: String
  • The ChartIQCrosshairHUD open parameter.

    Declaration

    Swift

    public var open: String
  • The ChartIQCrosshairHUD high parameter.

    Declaration

    Swift

    public var high: String
  • The ChartIQCrosshairHUD close parameter.

    Declaration

    Swift

    public var close: String
  • low

    The ChartIQCrosshairHUD low parameter.

    Declaration

    Swift

    public var low: String

Initializers

  • Init CrosshairHUD model with all parameters.

    Declaration

    Swift

    public init(price: String, volume: String, open: String, high: String, close: String, low: String)

    Parameters

    price

    The String Object.

    volume

    The String Object.

    open

    The String Object.

    high

    The String Object.

    close

    The String Object.

    low

    The String Object.

  • Init CrosshairHUD model with dictionary parameter.

    Declaration

    Swift

    public init(dictionary: [String : String])

    Parameters

    dictionary

    The dictionary with data for init CrosshairHUD model.