@JsonClass(true) data class IEXHistoricalPrice
Price data point for an IEX share.
<init> |
Price data point for an IEX share. IEXHistoricalPrice(date: String, close: Double, changeOverTime: Double, change: Double, changePercent: Double) |
change |
The price change of the data point. val change: Double |
changeOverTime |
The change over time of the data point. val changeOverTime: Double |
changePercent |
The change percentage of the data point. val changePercent: Double |
close |
The close value of the data point. val close: Double |
date |
The timestamp of the data point. val date: String |
asDomainHistoricalPrice |
Transforms an IEXHistoricalPrice to an equivalent HistoricalPrice. fun IEXHistoricalPrice.asDomainHistoricalPrice(id: String): HistoricalPrice |