com.binance4j.vision.param.CandlestickParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance4j-vision Show documentation
Show all versions of binance4j-vision Show documentation
Connector for the public data endpoints of the Binance API
The newest version!
package com.binance4j.vision.param;
import java.util.List;
import com.binance4j.core.dto.Candle;
import com.binance4j.core.exception.ApiException;
import okhttp3.ResponseBody;
import retrofit2.Call;
/** The candlestick request executor */
public class CandlestickParams extends VisionParams {
/**
* @param call API call.
*/
public CandlestickParams(Call call) {
super(call);
}
protected List csvToObject(List> input) throws ApiException {
return csvToObject(Candle.class, input);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy