ChartIQCrosshairHUD
public class ChartIQCrosshairHUD : NSObject
Encapsulates parameters with additional information for the data provided by CrosshairHUD.
-
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 -
The ChartIQCrosshairHUD low parameter.
Declaration
Swift
public var low: String
-
Init CrosshairHUD model with all parameters.
Declaration
Swift
public init(price: String, volume: String, open: String, high: String, close: String, low: String)Parameters
priceThe String Object.
volumeThe String Object.
openThe String Object.
highThe String Object.
closeThe String Object.
lowThe String Object.
-
Init CrosshairHUD model with dictionary parameter.
Declaration
Swift
public init(dictionary: [String : String])Parameters
dictionaryThe dictionary with data for init CrosshairHUD model.
ChartIQCrosshairHUD Class Reference