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

com.binance4j.market.dto.BookTicker Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package com.binance4j.market.dto;

/**
 * Represents the best price/quantity on the order book for a given symbol.
 * 
 * @param symbol   Ticker symbol.
 * @param bidPrice Bid price.
 * @param bidQty   Bid quantity.
 * @param askPrice Ask price.
 * @param askQty   Ask quantity.
 */
public record BookTicker(String symbol, String bidPrice, String bidQty, String askPrice, String askQty) {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy