
com.zerodhatech.models.OHLCQuote Maven / Gradle / Ivy
Go to download
Kite Connect is a set of REST-like APIs that expose many capabilities required to build a complete investment and trading platform.
package com.zerodhatech.models;
import com.google.gson.annotations.SerializedName;
/**
* A wrapper for open, high, low, close, instrument token and last price
*/
public class OHLCQuote {
@SerializedName("instrument_token")
public long instrumentToken;
@SerializedName("last_price")
public double lastPrice;
@SerializedName("ohlc")
public OHLC ohlc;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy