CoinGecko¶
Coming soon
CoinGecko support is planned for the crypto phase. All methods currently raise NotImplementedError.
Track progress at github.com/fuzzyalej/stockfeed.
Planned setup¶
What's planned¶
- OHLCV bars for crypto pairs (BTC/USD, ETH/USD, etc.)
- Live quote data
- Coin metadata (market cap, circulating supply, etc.)
- Free tier available without an API key (rate-limited)
- Pro tier with higher limits via API key
Current behaviour¶
from stockfeed.providers.coingecko.provider import CoingeckoProvider
p = CoingeckoProvider()
p.get_ohlcv(...) # raises NotImplementedError
Use provider=None (the default) to skip CoinGecko and fall back to yfinance for any request.