HistoricalNBBO

@Serializable
data class HistoricalNBBO(var s: String? = null, var skip: Long? = null, var count: Long? = null, var total: Long? = null, var av: List<Float>? = null, var a: List<Float>? = null, var ax: List<String>? = null, var bv: List<Float>? = null, var b: List<Float>? = null, var bx: List<String>? = null, var t: List<Long>? = null, var c: List<List<String>>? = null)

Constructors

Link copied to clipboard
fun HistoricalNBBO(s: String? = null, skip: Long? = null, count: Long? = null, total: Long? = null, av: List<Float>? = null, a: List<Float>? = null, ax: List<String>? = null, bv: List<Float>? = null, b: List<Float>? = null, bx: List<String>? = null, t: List<Long>? = null, c: List<List<String>>? = null)

Properties

Link copied to clipboard
var a: List<Float>? = null
Link copied to clipboard
var av: List<Float>? = null
Link copied to clipboard
var ax: List<String>? = null
Link copied to clipboard
var b: List<Float>? = null
Link copied to clipboard
var bv: List<Float>? = null
Link copied to clipboard
var bx: List<String>? = null
Link copied to clipboard
var c: List<List<String>>? = null
Link copied to clipboard
var count: Long? = null

Number of ticks returned. If ``count``<``limit``, all data for that date has been returned. @property total Total number of ticks for that date. @property av List of Ask volume data. @property a List of Ask price data. @property ax List of venues/exchanges - Ask price. A list of exchange codes can be found here @property bv List of Bid volume data. @property b List of Bid price data. @property bx List of venues/exchanges - Bid price. A list of exchange codes can be found here @property t List of timestamp in UNIX ms. @property c List of quote conditions. A comprehensive list of quote conditions code can be found here

Link copied to clipboard
var s: String? = null

Symbol.

Link copied to clipboard
var skip: Long? = null

Number of ticks skipped.

Link copied to clipboard
var t: List<Long>? = null
Link copied to clipboard
var total: Long? = null