File size: 11,887 Bytes
e4e4574 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 |
# π HuggingFace Cryptocurrency Data Engine
A production-ready cryptocurrency data aggregator that consolidates multiple data sources into unified APIs. Designed to serve as a reliable data provider for the Dreammaker Crypto Signal & Trader application.
**HuggingFace Space:** `Really-amin/Datasourceforcryptocurrency`
**Local URL:** `http://localhost:8000`
## π― Features
### Core Functionality
- β
**Multi-Provider OHLCV Data** - Binance, Kraken with automatic fallback
- β
**Real-Time Prices** - Aggregated from CoinGecko, CoinCap, Binance
- β
**Market Sentiment** - Fear & Greed Index from Alternative.me
- β
**Market Overview** - Global market statistics from CoinGecko
- β
**Provider Health Monitoring** - Real-time status of all data sources
### Technical Features
- π **Automatic Fallback** - Seamless provider switching on failure
- β‘ **In-Memory Caching** - Configurable TTL for optimal performance
- π‘οΈ **Circuit Breaker** - Prevents repeated requests to failed services
- π **Rate Limiting** - IP-based throttling for API protection
- π **Comprehensive Logging** - Detailed request and error tracking
- π **OpenAPI Documentation** - Interactive API docs at `/docs`
## π Supported Data
### Cryptocurrencies (14+)
BTC, ETH, SOL, XRP, BNB, ADA, DOT, LINK, LTC, BCH, MATIC, AVAX, XLM, TRX
### Timeframes
- `1m` - 1 minute
- `5m` - 5 minutes
- `15m` - 15 minutes
- `1h` - 1 hour
- `4h` - 4 hours
- `1d` - 1 day
- `1w` - 1 week
## π Quick Start
### Docker (Recommended)
```bash
# Build and run
docker build -t hf-crypto-engine .
docker run -p 8000:8000 hf-crypto-engine
# Access the API
curl http://localhost:8000/api/health
```
### Local Development
```bash
# Install dependencies
pip install -r requirements.txt
# Copy environment configuration
cp .env.example .env
# Run the server
python main.py
# Or with uvicorn
uvicorn main:app --reload --host 0.0.0.0 --port 8000
```
### Access Points
- **API Root:** http://localhost:8000/
- **Health Check:** http://localhost:8000/api/health
- **Interactive Docs:** http://localhost:8000/docs
- **ReDoc:** http://localhost:8000/redoc
## π‘ API Endpoints
### 1οΈβ£ Health Check
Get service status and provider health.
```http
GET /api/health
```
**Response:**
```json
{
"status": "healthy",
"uptime": 3600,
"version": "1.0.0",
"providers": [
{
"name": "binance",
"status": "online",
"latency": 120,
"lastCheck": "2024-01-15T10:30:00Z"
}
],
"cache": {
"size": 1250,
"hitRate": 0.78
}
}
```
### 2οΈβ£ OHLCV Data
Get candlestick (OHLCV) data with automatic provider fallback.
```http
GET /api/ohlcv?symbol=BTCUSDT&interval=1h&limit=100
```
**Parameters:**
- `symbol` (required): Symbol (e.g., `BTC`, `BTCUSDT`, `BTC/USDT`)
- `interval` (optional): Timeframe - `1m`, `5m`, `15m`, `1h`, `4h`, `1d`, `1w` (default: `1h`)
- `limit` (optional): Number of candles 1-1000 (default: `100`)
**Response:**
```json
{
"success": true,
"data": [
{
"timestamp": 1699920000000,
"open": 43250.50,
"high": 43500.00,
"low": 43100.25,
"close": 43420.75,
"volume": 125.45
}
],
"symbol": "BTCUSDT",
"interval": "1h",
"count": 100,
"source": "binance",
"timestamp": 1699920000000
}
```
**Fallback Order:** Binance β Kraken
**Cache TTL:** 5 minutes (configurable)
### 3οΈβ£ Real-Time Prices
Get current prices for multiple cryptocurrencies with multi-provider aggregation.
```http
GET /api/prices?symbols=BTC,ETH,SOL
```
**Parameters:**
- `symbols` (optional): Comma-separated symbols (default: all supported)
- `convert` (optional): Currency conversion - `USD`, `USDT` (default: `USDT`)
**Response:**
```json
{
"success": true,
"data": [
{
"symbol": "BTC",
"name": "Bitcoin",
"price": 43420.75,
"priceUsd": 43420.75,
"change1h": 0.25,
"change24h": 2.15,
"change7d": -1.50,
"volume24h": 28500000000,
"marketCap": 850000000000,
"rank": 1,
"lastUpdate": "2024-01-15T10:30:00Z"
}
],
"timestamp": 1699920000000,
"source": "coingecko+coincap+binance"
}
```
**Data Sources:** CoinGecko, CoinCap, Binance (aggregated)
**Cache TTL:** 30 seconds (configurable)
### 4οΈβ£ Market Sentiment
Get market sentiment indicators including Fear & Greed Index.
```http
GET /api/sentiment
```
**Response:**
```json
{
"success": true,
"data": {
"fearGreed": {
"value": 65,
"classification": "Greed",
"timestamp": "2024-01-15T10:00:00Z"
},
"news": {
"bullish": 0,
"bearish": 0,
"neutral": 0,
"total": 0
},
"overall": {
"sentiment": "bullish",
"score": 65,
"confidence": 0.8
}
},
"timestamp": 1699920000000
}
```
**Data Source:** Alternative.me Fear & Greed Index
**Cache TTL:** 10 minutes (configurable)
### 5οΈβ£ Market Overview
Get global market statistics and metrics.
```http
GET /api/market/overview
```
**Response:**
```json
{
"success": true,
"data": {
"totalMarketCap": 1650000000000,
"totalVolume24h": 95000000000,
"btcDominance": 51.5,
"ethDominance": 17.2,
"activeCoins": 12500,
"topGainers": [],
"topLosers": [],
"trending": []
},
"timestamp": 1699920000000
}
```
**Data Source:** CoinGecko Global API
**Cache TTL:** 5 minutes (configurable)
### 6οΈβ£ Cache Management
Clear cached data and view statistics.
```http
POST /api/cache/clear
GET /api/cache/stats
```
## βοΈ Configuration
### Environment Variables
Create a `.env` file based on `.env.example`:
```bash
# Server
PORT=8000
HOST=0.0.0.0
ENV=production
# Cache TTL (seconds)
CACHE_TTL_PRICES=30
CACHE_TTL_OHLCV=300
CACHE_TTL_SENTIMENT=600
# Rate Limits (requests per minute)
RATE_LIMIT_PRICES=120
RATE_LIMIT_OHLCV=60
RATE_LIMIT_SENTIMENT=30
# Optional API Keys
COINGECKO_API_KEY=your_key_here
```
### Supported Symbols
Edit `SUPPORTED_SYMBOLS` in `.env`:
```bash
SUPPORTED_SYMBOLS=BTC,ETH,SOL,XRP,BNB,ADA,DOT,LINK,LTC,BCH,MATIC,AVAX,XLM,TRX
```
## π³ HuggingFace Spaces Deployment
### 1. Create README.md for HF Space
```yaml
---
title: Crypto Data Engine
emoji: π
colorFrom: blue
colorTo: green
sdk: docker
app_port: 8000
---
```
### 2. Deploy Files
Upload these files to your HuggingFace Space:
- `Dockerfile`
- `requirements.txt`
- `main.py`
- All `core/` and `providers/` directories
- `.env.example` (rename to `.env` if setting variables)
### 3. Configure Secrets (Optional)
In Space settings, add:
- `COINGECKO_API_KEY` - For higher rate limits
- Other API keys as needed
### 4. Access Your Space
```
https://huggingface.co/spaces/YOUR_USERNAME/YOUR_SPACE_NAME
```
## π Performance
### Response Times
| Endpoint | Target | Maximum | Cache |
|----------|--------|---------|-------|
| `/api/prices` | <1s | 3s | 30s |
| `/api/ohlcv` (50 bars) | <2s | 5s | 5min |
| `/api/ohlcv` (200 bars) | <5s | 15s | 5min |
| `/api/sentiment` | <3s | 10s | 10min |
| `/api/health` | <100ms | 500ms | None |
### Rate Limits
| Endpoint | Limit |
|----------|-------|
| `/api/prices` | 120 req/min |
| `/api/ohlcv` | 60 req/min |
| `/api/sentiment` | 30 req/min |
| `/api/health` | Unlimited |
## π§ Integration with Dreammaker
### Backend Configuration (.env)
```bash
HF_ENGINE_BASE_URL=http://localhost:8000
# or
HF_ENGINE_BASE_URL=https://really-amin-datasourceforcryptocurrency.hf.space
HF_ENGINE_ENABLED=true
HF_ENGINE_TIMEOUT=30000
PRIMARY_DATA_SOURCE=huggingface
```
### TypeScript Client Example
```typescript
import axios from 'axios';
const hfClient = axios.create({
baseURL: process.env.HF_ENGINE_BASE_URL,
timeout: 30000,
});
// Fetch OHLCV
const ohlcv = await hfClient.get('/api/ohlcv', {
params: { symbol: 'BTCUSDT', interval: '1h', limit: 200 }
});
// Fetch Prices
const prices = await hfClient.get('/api/prices', {
params: { symbols: 'BTC,ETH,SOL' }
});
// Fetch Sentiment
const sentiment = await hfClient.get('/api/sentiment');
```
## π‘οΈ Error Handling
### Error Response Format
```json
{
"success": false,
"error": {
"code": "PROVIDER_ERROR",
"message": "All data providers are currently unavailable",
"details": {
"binance": "HTTP 403",
"kraken": "Timeout"
},
"retryAfter": 60
},
"timestamp": 1699920000000
}
```
### Error Codes
- `INVALID_SYMBOL` - Unknown cryptocurrency symbol
- `INVALID_INTERVAL` - Unsupported timeframe
- `PROVIDER_ERROR` - All providers failed
- `RATE_LIMITED` - Too many requests
- `INTERNAL_ERROR` - Server error
## π Monitoring
### Logs
All requests and errors are logged:
```
2024-01-15 10:30:00 - INFO - Trying binance for OHLCV data: BTCUSDT 1h
2024-01-15 10:30:00 - INFO - Successfully fetched 100 candles from binance
```
### Health Monitoring
Monitor provider status via `/api/health`:
- `online` - Provider working normally
- `degraded` - Recent errors but still functional
- `offline` - Circuit breaker open, provider unavailable
## π§ͺ Testing
### Manual Testing
```bash
# Health check
curl http://localhost:8000/api/health
# OHLCV data
curl "http://localhost:8000/api/ohlcv?symbol=BTC&interval=1h&limit=10"
# Prices
curl "http://localhost:8000/api/prices?symbols=BTC,ETH"
# Sentiment
curl http://localhost:8000/api/sentiment
# Market overview
curl http://localhost:8000/api/market/overview
```
### Load Testing
```bash
# Using Apache Bench
ab -n 1000 -c 10 http://localhost:8000/api/prices?symbols=BTC
# Using k6
k6 run loadtest.js
```
## π Architecture
```
βββββββββββββββββββββββββββββββββββββββββββ
β FastAPI Application β
β ββββββββββββββββββββββββββββββββββββββ β
β β Rate Limiter (SlowAPI) β β
β ββββββββββββββββββββββββββββββββββββββ β
β ββββββββββββββββββββββββββββββββββββββ β
β β Cache Layer (In-Memory) β β
β ββββββββββββββββββββββββββββββββββββββ β
β ββββββββββββββββββββββββββββββββββββββ β
β β Data Aggregator β β
β β ββββββββββββ¬βββββββββββ¬ββββββββββ β β
β β β Binance β Kraken βCoinGeckoβ β β
β β ββββββββββββ΄βββββββββββ΄ββββββββββ β β
β β ββββββββββββββββββββββββββββββββ β β
β β β Circuit Breaker β β β
β β ββββββββββββββββββββββββββββββββ β β
β ββββββββββββββββββββββββββββββββββββββ β
βββββββββββββββββββββββββββββββββββββββββββ
```
## π€ Contributing
Contributions are welcome! Please:
1. Fork the repository
2. Create a feature branch
3. Make your changes
4. Add tests
5. Submit a pull request
## π License
MIT License - See LICENSE file for details
## π Acknowledgments
- **Binance** - Primary OHLCV data source
- **CoinGecko** - Price and market data
- **Alternative.me** - Fear & Greed Index
- **CoinCap** - Real-time price data
- **Kraken** - Backup OHLCV provider
---
**Made with β€οΈ for the Crypto Community**
**Version:** 1.0.0
**Last Updated:** 2024-01-15
|