All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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.

There is a newer version: 3.5.0
Show newest version
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