About Binance US Crypto Price Data
The Binance US Crypto Price Data by CoinAPI is for Cryptocurrency price and volume data points. The data covers 541 Cryptocurrency pairs, starts in October 2019, and is delivered on any frequency from tick to daily. This dataset is created by monitoring the trading activity on Binance US.
About CoinAPI
CoinAPI was founded by Artur Pietrzyk in 2016 with the goal of providing real-time and historical cryptocurrency market data, collected from hundreds of exchanges. CoinAPI provides access to Cryptocurrencies for traders, market makers, and developers building third-party applications.
About QuantConnect
QuantConnect was founded in 2012 to serve quants everywhere with the best possible algorithmic trading technology. Seeking to disrupt a notoriously closed-source industry, QuantConnect takes a radically open-source approach to algorithmic trading. Through the QuantConnect web platform, more than 50,000 quants are served every month.
Algorithm Example
from AlgorithmImports import *
class CoinAPIDataAlgorithm(QCAlgorithm):
def initialize(self) -> None:
self.set_start_date(2020, 6, 1)
self.set_end_date(2021, 6, 1)
self.set_cash(100000)
self.universe_settings.asynchronous = True
# BinanceUS accepts Cash account type only, AccountType.MARGIN will result in an exception.
self.set_brokerage_model(BrokerageName.BINANCE_US, AccountType.CASH)
# Warm up the security with the last known price to avoid conversion error
self.set_security_initializer(lambda security: security.set_market_price(self.get_last_known_price(security)))
# Requesting data, we only trade on BTCUSD in BinanceUS exchange
crypto = self.add_crypto("BTCUSD", Resolution.MINUTE, Market.BINANCE_US)
self.btcusd = crypto.symbol
self.minimum_order_size = crypto.symbol_properties.minimum_order_size
# Historical data
history = self.history(self.btcusd, 30, Resolution.DAILY)
self.debug(f"We got {len(history)} items from our history request")
# Add Crypto Universe Selection that select crypto pairs in BinanceUS exchange
self._universe = self.add_universe(CryptoUniverse.binance_us(self.universe_selection_filter))
# Historical Universe data
universe_history = self.history(self._universe, 30, Resolution.DAILY)
self.debug(f"We got {len(universe_history)} items from our universe history request")
for (univere_symbool, time), universe_day in universe_history.items():
for universe_item in universe_day:
self.debug(f"{universe_item.symbol} price at {universe_item.end_time}: {universe_item.close}")
def universe_selection_filter(self, universe_day):
# Filter for materially traded crypto pairs with significant size and dollar volume, assuming higher capital flow in for higher return
return [universe_item.symbol for universe_item in universe_day
if universe_item.volume >= 100
and universe_item.volume_in_usd > 10000]
def on_data(self, slice: Slice) -> None:
# Speculate-invest all available free cash on BTCUSD, obeying the order quantity restriction to avoid invalid order
if self.portfolio.cash_book['BTC'].amount == 0:
free_cash = self.portfolio.cash_book['USD'].amount * (1-self.settings.free_portfolio_value_percentage)
quantity = free_cash / slice[self.btcusd].price
quantity -= quantity % self.minimum_order_size
if quantity > 0:
self.market_order(self.btcusd, quantity)
Example Applications
The Binance US Crypto Price dataset enables you to accurately design strategies for Cryptocurrencies. Examples include the following strategies:
- Buy and hold
- Trading Cryptocurrency volatility and price action
- Allocating a small portion of your portfolio to Cryptocurrencies to hedge against inflation
Pricing
Cloud Access
Free access to Binance US Crypto price data from CoinBase via the QuantConnect Cloud platform for your backtesting and research.
Tick Download
Crypto-currencies Tick resolution archives in LEAN format for on premise backtesting and research. One file per ticker/day/brokerage
Second Download
Crypto-currencies Second resolution archives in LEAN format for on premise backtesting and research. One file per ticker/day/brokerage.
Minute Download
Crypto-currencies Minute resolution archives in LEAN format for on premise backtesting and research. One file per ticker/day/brokerage.
Hour Download
Crypto-currencies Hour resolution archives in LEAN format for on premise backtesting and research. One file per ticker/brokerage.
Daily Download
Crypto-currencies Daily resolution archives in LEAN format for on premise backtesting and research. One file per ticker/brokerage.
Explore Other Datasets
Tiingo News Feed
Dataset by Tiingo
True Beats
Dataset by ExtractAlpha
US Futures
Dataset by AlgoSeek