KlineDataDto

data class KlineDataDto(var timestamp: Long, var open: Double, var close: Double, var highest: Double? = null, var lowest: Double? = null)

A data element for drawing a point in a K-line diagram.

Parameters

timestamp

Timestamp of the point

`open` Value of the currency at the time the market was opened.

close

Value of the currency at the time the market has been closed.

highest

Highest value of the currency during the day.

lowest

Lowest value of the currency during the day.

Constructors

Link copied to clipboard
constructor(timestamp: Long, open: Double, close: Double, highest: Double? = null, lowest: Double? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard