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

io.runon.cryptocurrency.exchanges.binance.BinanceFuturesLastCandleStream Maven / Gradle / Ivy

There is a newer version: 0.5.2
Show newest version
package io.runon.cryptocurrency.exchanges.binance;

import io.runon.cryptocurrency.trading.CryptocurrencyLastCandle;

/**
 * @author macle
 */
public class BinanceFuturesLastCandleStream  extends BinanceFuturesCandleStream{
    /**
     * @param streamId 아이디 (자유지정, 중복안됨)
     */
    public BinanceFuturesLastCandleStream(String streamId) {
        super(streamId);
    }

    @Override
    public CryptocurrencyLastCandle newCryptocurrency(String cryptocurrencyId) {
        return new CryptocurrencyLastCandle(getMarketSymbol(cryptocurrencyId));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy