CrosshairHUD

data class CrosshairHUD(val price: String, val volume: String, val open: String, val high: String, val close: String, val low: String)

A heads-up display (HUD) is a method of displaying detailed information for a specific bar on the chart itself. The information for the bar that the cursor is currently hovering over is presented in the HUD.

Constructors

Link copied to clipboard
constructor(price: String, volume: String, open: String, high: String, close: String, low: String)

Properties

Link copied to clipboard
@SerializedName(value = "close")
val close: String

Closing price for the bar.

Link copied to clipboard
@SerializedName(value = "high")
val high: String

High price for the bar.

Link copied to clipboard
@SerializedName(value = "low")
val low: String

Low price for the bar.

Link copied to clipboard
@SerializedName(value = "open")
val open: String

Opening price for the bar.

Link copied to clipboard
@SerializedName(value = "price")
val price: String

Price for the bar.

Link copied to clipboard
@SerializedName(value = "volume")
val volume: String

Trading volume for the bar in whole numbers