forked from github/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathda_exe
More file actions
700 lines (588 loc) · 27.2 KB
/
Copy pathda_exe
File metadata and controls
700 lines (588 loc) · 27.2 KB
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
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
# data_collector.py
import asyncio
import json
import websockets
import aiohttp
import time
from datetime import datetime
from database import CryptoDatabase
class DataCollector:
def __init__(self, config_path="config/api_config.json"):
"""Inicializador del recolector de datos de criptomonedas"""
self.db = CryptoDatabase()
self.active_streams = {}
self.api_keys = {}
self.exchanges = []
self.load_config(config_path)
def load_config(self, config_path):
"""Carga la configuración de APIs desde un archivo JSON"""
with open(config_path, 'r') as file:
config = json.load(file)
self.api_keys = config.get('api_keys', {})
self.exchanges = config.get('exchanges', [])
async def initialize_streams(self):
"""Inicializa los streams de datos para todos los exchanges configurados"""
tasks = []
for exchange in self.exchanges:
if exchange == 'binance':
tasks.append(self.connect_binance())
elif exchange == 'coinbase':
tasks.append(self.connect_coinbase())
# Agregar más exchanges según sea necesario
await asyncio.gather(*tasks)
async def connect_binance(self):
"""Establece conexión con WebSocket de Binance para datos en tiempo real"""
uri = "wss://stream.binance.com:9443/ws/!ticker@arr"
async with websockets.connect(uri) as websocket:
self.active_streams['binance'] = websocket
while True:
try:
response = await websocket.recv()
data = json.loads(response)
# Procesamiento de los datos recibidos
for ticker in data:
symbol = ticker['s']
if symbol.endswith('USDT'): # Filtramos pares con USDT
crypto = symbol[:-4] # Eliminamos 'USDT' del final
price = float(ticker['c']) # Precio actual
timestamp = int(time.time() * 1000)
# Almacenamos en la base de datos
await self.db.store_price_data({
'exchange': 'binance',
'symbol': crypto,
'price': price,
'timestamp': timestamp,
'volume_24h': float(ticker['v']),
'change_24h': float(ticker['p'])
})
except Exception as e:
print(f"Error en Binance WebSocket: {e}")
# Reconexión tras error
await asyncio.sleep(5)
return await self.connect_binance()
async def connect_coinbase(self):
"""Establece conexión con la API de Coinbase para datos en tiempo real"""
uri = "wss://ws-feed.pro.coinbase.com"
# Configuración de la suscripción
subscription = {
"type": "subscribe",
"channels": [{"name": "ticker", "product_ids": ["BTC-USD", "ETH-USD", "SOL-USD"]}]
}
async with websockets.connect(uri) as websocket:
self.active_streams['coinbase'] = websocket
# Enviar mensaje de suscripción
await websocket.send(json.dumps(subscription))
while True:
try:
response = await websocket.recv()
data = json.loads(response)
if data.get('type') == 'ticker':
product_id = data.get('product_id', '')
if '-USD' in product_id:
crypto = product_id.split('-')[0]
price = float(data.get('price', 0))
timestamp = int(datetime.fromisoformat(data.get('time').replace('Z', '+00:00')).timestamp() * 1000)
# Almacenamos en la base de datos
await self.db.store_price_data({
'exchange': 'coinbase',
'symbol': crypto,
'price': price,
'timestamp': timestamp,
'volume_24h': float(data.get('volume_24h', 0)),
'change_24h': 0 # Coinbase no proporciona este dato directamente
})
except Exception as e:
print(f"Error en Coinbase WebSocket: {e}")
# Reconexión tras error
await asyncio.sleep(5)
return await self.connect_coinbase()
async def fetch_rest_data(self):
"""Obtiene datos adicionales a través de APIs REST para exchanges que no soportan WebSockets"""
while True:
for exchange in self.exchanges:
if exchange == 'kraken':
await self.fetch_kraken_data()
# Agregar más exchanges según sea necesario
# Actualizamos cada 30 segundos para APIs REST
await asyncio.sleep(30)
async def fetch_kraken_data(self):
"""Obtiene datos de precios desde la API REST de Kraken"""
url = "https://api.kraken.com/0/public/Ticker"
params = {"pair": "BTCUSD,ETHUSD,SOLUSD"}
async with aiohttp.ClientSession() as session:
try:
async with session.get(url, params=params) as response:
if response.status == 200:
data = await response.json()
result = data.get('result', {})
# Mapeamos los pares de Kraken a símbolos estándar
mapping = {
'XXBTZUSD': 'BTC',
'XETHZUSD': 'ETH',
'SOLUSD': 'SOL'
}
for pair, info in result.items():
if pair in mapping:
crypto = mapping[pair]
price = float(info['c'][0]) # Precio actual
timestamp = int(time.time() * 1000)
# Almacenamos en la base de datos
await self.db.store_price_data({
'exchange': 'kraken',
'symbol': crypto,
'price': price,
'timestamp': timestamp,
'volume_24h': float(info['v'][1]), # Volumen 24h
'change_24h': 0 # Calcularlo manualmente si es necesario
})
except Exception as e:
print(f"Error obteniendo datos de Kraken: {e}")
async def run(self):
"""Ejecuta todos los recolectores de datos en paralelo"""
await asyncio.gather(
self.initialize_streams(),
self.fetch_rest_data()
)
if __name__ == "__main__":
collector = DataCollector()
asyncio.run(collector.run())
# database.py
import asyncio
import motor.motor_asyncio
from pymongo import ASCENDING, DESCENDING, IndexModel
import redis
from datetime import datetime, timedelta
from typing import Dict, List, Any, Optional
import time
import json
class CryptoDatabase:
def __init__(self, config_path="config/db_config.json"):
"""Inicializa la conexión a las bases de datos"""
self.load_config(config_path)
# Conexión a MongoDB para almacenamiento persistente
self.mongo_client = motor.motor_asyncio.AsyncIOMotorClient(self.mongo_uri)
self.db = self.mongo_client[self.mongo_db_name]
# Conexión a Redis para caché y datos en tiempo real
self.redis_client = redis.Redis(
host=self.redis_host,
port=self.redis_port,
password=self.redis_password,
decode_responses=True
)
# Inicializar colecciones e índices
asyncio.create_task(self.init_collections())
def load_config(self, config_path):
"""Carga la configuración de la base de datos desde un archivo JSON"""
with open(config_path, 'r') as file:
config = json.load(file)
# MongoDB config
mongo_config = config.get('mongodb', {})
self.mongo_uri = mongo_config.get('uri', 'mongodb://localhost:27017')
self.mongo_db_name = mongo_config.get('db_name', 'crypto_assistant')
# Redis config
redis_config = config.get('redis', {})
self.redis_host = redis_config.get('host', 'localhost')
self.redis_port = redis_config.get('port', 6379)
self.redis_password = redis_config.get('password', '')
async def init_collections(self):
"""Inicializa las colecciones e índices en MongoDB"""
# Colección para datos de precios históricos
price_collection = self.db.price_data
# Índices para búsqueda eficiente
await price_collection.create_indexes([
IndexModel([('symbol', ASCENDING), ('timestamp', DESCENDING)]),
IndexModel([('exchange', ASCENDING), ('symbol', ASCENDING)]),
IndexModel([('timestamp', DESCENDING)])
])
# Colección para órdenes
orders_collection = self.db.orders
await orders_collection.create_indexes([
IndexModel([('user_id', ASCENDING), ('timestamp', DESCENDING)]),
IndexModel([('status', ASCENDING)]),
IndexModel([('symbol', ASCENDING)])
])
# Colección para predicciones de usuarios
predictions_collection = self.db.user_predictions
await predictions_collection.create_indexes([
IndexModel([('user_id', ASCENDING), ('timestamp', DESCENDING)]),
IndexModel([('symbol', ASCENDING), ('timestamp', DESCENDING)]),
IndexModel([('prediction_type', ASCENDING)])
])
# Colección para configuración de alertas
alerts_collection = self.db.alerts
await alerts_collection.create_indexes([
IndexModel([('user_id', ASCENDING), ('active', ASCENDING)]),
IndexModel([('symbol', ASCENDING), ('alert_type', ASCENDING)])
])
# Colección para usuarios
users_collection = self.db.users
await users_collection.create_indexes([
IndexModel([('email', ASCENDING)], unique=True),
IndexModel([('username', ASCENDING)], unique=True)
])
async def store_price_data(self, data: Dict[str, Any]):
"""
Almacena datos de precio en Redis (para acceso en tiempo real) y MongoDB (para histórico)
Args:
data: Diccionario con datos de precio (exchange, symbol, price, timestamp, etc.)
"""
# Guardar en Redis para acceso rápido en tiempo real (TTL 1 hora)
redis_key = f"price:{data['exchange']}:{data['symbol']}"
self.redis_client.hmset(redis_key, {
'price': data['price'],
'timestamp': data['timestamp'],
'volume_24h': data.get('volume_24h', 0),
'change_24h': data.get('change_24h', 0)
})
self.redis_client.expire(redis_key, 3600) # 1 hora TTL
# También almacenamos en un conjunto ordenado para rápido acceso a datos recientes
sorted_key = f"recent_prices:{data['symbol']}"
self.redis_client.zadd(sorted_key, {json.dumps({
'exchange': data['exchange'],
'price': data['price'],
'timestamp': data['timestamp']
}): data['timestamp']})
self.redis_client.zremrangebyrank(sorted_key, 0, -101) # Mantener solo 100 entradas más recientes
self.redis_client.expire(sorted_key, 3600) # 1 hora TTL
# Guardar en MongoDB para histórico
# Para no saturar la BD, podemos almacenar en intervalos (ej: cada minuto)
current_minute = int(data['timestamp'] / (60 * 1000)) * (60 * 1000)
cache_key = f"last_stored:{data['exchange']}:{data['symbol']}:{current_minute}"
if not self.redis_client.exists(cache_key):
# Solo almacenamos una vez por minuto para cada par
await self.db.price_data.insert_one(data)
self.redis_client.set(cache_key, 1, ex=70) # TTL de 70 segundos
async def get_latest_price(self, symbol: str, exchange: Optional[str] = None) -> Dict[str, Any]:
"""
Obtiene el precio más reciente para un símbolo específico
Args:
symbol: Símbolo de la criptomoneda (ej: BTC)
exchange: Exchange específico o None para obtener de cualquier exchange
Returns:
Diccionario con los datos de precio más reciente
"""
if exchange:
# Buscar en Redis primero
redis_key = f"price:{exchange}:{symbol}"
price_data = self.redis_client.hgetall(redis_key)
if price_data:
return {
'exchange': exchange,
'symbol': symbol,
'price': float(price_data['price']),
'timestamp': int(price_data['timestamp']),
'volume_24h': float(price_data.get('volume_24h', 0)),
'change_24h': float(price_data.get('change_24h', 0))
}
else:
# Buscar el más reciente de cualquier exchange usando el conjunto ordenado
sorted_key = f"recent_prices:{symbol}"
latest = self.redis_client.zrevrange(sorted_key, 0, 0, withscores=True)
if latest:
latest_data = json.loads(latest[0][0])
# Ahora buscar los datos completos
redis_key = f"price:{latest_data['exchange']}:{symbol}"
price_data = self.redis_client.hgetall(redis_key)
if price_data:
return {
'exchange': latest_data['exchange'],
'symbol': symbol,
'price': float(price_data['price']),
'timestamp': int(price_data['timestamp']),
'volume_24h': float(price_data.get('volume_24h', 0)),
'change_24h': float(price_data.get('change_24h', 0))
}
# Si no encontramos en Redis, buscamos en MongoDB
query = {'symbol': symbol}
if exchange:
query['exchange'] = exchange
latest = await self.db.price_data.find_one(
query,
sort=[('timestamp', DESCENDING)]
)
return latest if latest else {'symbol': symbol, 'price': None, 'timestamp': None}
async def get_historical_prices(self, symbol: str,
interval: str = '1h',
start_time: Optional[int] = None,
end_time: Optional[int] = None,
limit: int = 100,
exchange: Optional[str] = None) -> List[Dict[str, Any]]:
"""
Obtiene datos históricos de precios con diferentes intervalos
Args:
symbol: Símbolo de la criptomoneda
interval: Intervalo de tiempo ('1m', '5m', '1h', '4h', '1d')
start_time: Timestamp de inicio en ms (opcional)
end_time: Timestamp de fin en ms (opcional)
limit: Número máximo de registros a devolver
exchange: Exchange específico (opcional)
Returns:
Lista de registros de precios históricos
"""
if not end_time:
end_time = int(time.time() * 1000)
if not start_time:
# Por defecto, recuperar datos según el intervalo
intervals = {
'1m': 60 * 60 * 1000, # 1 hora en ms
'5m': 5 * 60 * 60 * 1000, # 5 horas en ms
'1h': 24 * 60 * 60 * 1000, # 1 día en ms
'4h': 7 * 24 * 60 * 60 * 1000, # 7 días en ms
'1d': 30 * 24 * 60 * 60 * 1000 # 30 días en ms
}
start_time = end_time - intervals.get(interval, 24 * 60 * 60 * 1000)
# Construir la consulta
query = {
'symbol': symbol,
'timestamp': {'$gte': start_time, '$lte': end_time}
}
if exchange:
query['exchange'] = exchange
# Agregación para obtener datos agrupados por intervalo
pipeline = [
{'$match': query},
{'$sort': {'timestamp': 1}}
]
# Si no es intervalo de 1 minuto, agrupamos los datos
if interval != '1m':
# Convertir intervalo a milisegundos
interval_ms = {
'5m': 5 * 60 * 1000,
'1h': 60 * 60 * 1000,
'4h': 4 * 60 * 60 * 1000,
'1d': 24 * 60 * 60 * 1000
}.get(interval, 60 * 60 * 1000)
pipeline.extend([
{
'$group': {
'_id': {
'$subtract': [
'$timestamp',
{'$mod': ['$timestamp', interval_ms]}
]
},
'open': {'$first': '$price'},
'high': {'$max': '$price'},
'low': {'$min': '$price'},
'close': {'$last': '$price'},
'volume': {'$sum': '$volume_24h'},
'count': {'$sum': 1}
}
},
{
'$project': {
'_id': 0,
'timestamp': '$_id',
'open': 1,
'high': 1,
'low': 1,
'close': 1,
'volume': 1
}
},
{'$sort': {'timestamp': 1}},
{'$limit': limit}
])
else:
# Para intervalo 1m, simplemente limitamos
pipeline.append({'$limit': limit})
# Ejecutar la agregación
cursor = self.db.price_data.aggregate(pipeline)
return await cursor.to_list(length=limit)
async def store_order(self, order_data: Dict[str, Any]) -> str:
"""
Almacena una orden en la base de datos
Args:
order_data: Datos de la orden a almacenar
Returns:
ID de la orden insertada
"""
# Asegurar que la orden tiene un timestamp
if 'timestamp' not in order_data:
order_data['timestamp'] = int(time.time() * 1000)
# Almacenar la orden
result = await self.db.orders.insert_one(order_data)
return str(result.inserted_id)
async def update_order_status(self, order_id: str, new_status: str,
execution_data: Optional[Dict[str, Any]] = None) -> bool:
"""
Actualiza el estado de una orden
Args:
order_id: ID de la orden
new_status: Nuevo estado ('pending', 'filled', 'cancelled', 'partial')
execution_data: Datos de ejecución adicionales (opcional)
Returns:
True si se actualizó correctamente, False en caso contrario
"""
update_data = {
'$set': {
'status': new_status,
'updated_at': int(time.time() * 1000)
}
}
if execution_data:
update_data['$set'].update(execution_data)
result = await self.db.orders.update_one(
{'_id': order_id},
update_data
)
return result.modified_count > 0
async def store_user_prediction(self, prediction_data: Dict[str, Any]) -> str:
"""
Almacena una predicción de usuario en la base de datos
Args:
prediction_data: Datos de la predicción
Returns:
ID de la predicción insertada
"""
# Asegurar que la predicción tiene un timestamp
if 'timestamp' not in prediction_data:
prediction_data['timestamp'] = int(time.time() * 1000)
# Almacenar la predicción
result = await self.db.user_predictions.insert_one(prediction_data)
# Actualizar caché de sentimiento del mercado
await self.update_market_sentiment(prediction_data['symbol'])
return str(result.inserted_id)
async def update_market_sentiment(self, symbol: str) -> Dict[str, Any]:
"""
Actualiza y recupera el sentimiento del mercado para un símbolo específico
basado en las predicciones de los usuarios
Args:
symbol: Símbolo de la criptomoneda
Returns:
Datos de sentimiento del mercado
"""
# Obtener predicciones de las últimas 24 horas
one_day_ago = int(time.time() * 1000) - (24 * 60 * 60 * 1000)
pipeline = [
{
'$match': {
'symbol': symbol,
'timestamp': {'$gte': one_day_ago}
}
},
{
'$group': {
'_id': '$prediction_type',
'count': {'$sum': 1},
'avg_price_target': {'$avg': '$price_target'},
'predictions': {'$push': {
'user_id': '$user_id',
'price_target': '$price_target',
'timestamp': '$timestamp',
'confidence': '$confidence'
}}
}
}
]
cursor = self.db.user_predictions.aggregate(pipeline)
result = await cursor.to_list(length=None)
# Procesar resultados
sentiment_data = {
'symbol': symbol,
'timestamp': int(time.time() * 1000),
'bullish_count': 0,
'bearish_count': 0,
'neutral_count': 0,
'avg_price_target': 0,
'weighted_sentiment': 0 # -1 (muy bearish) a +1 (muy bullish)
}
total_predictions = 0
weighted_sum = 0
price_targets = []
for group in result:
pred_type = group['_id']
count = group['count']
if pred_type == 'bullish':
sentiment_data['bullish_count'] = count
weighted_sum += count * 1
elif pred_type == 'bearish':
sentiment_data['bearish_count'] = count
weighted_sum += count * -1
elif pred_type == 'neutral':
sentiment_data['neutral_count'] = count
total_predictions += count
# Recopilar objetivos de precio
for pred in group.get('predictions', []):
if 'price_target' in pred and pred['price_target']:
price_targets.append(pred['price_target'])
# Calcular sentimiento ponderado
if total_predictions > 0:
sentiment_data['weighted_sentiment'] = weighted_sum / total_predictions
# Calcular objetivo de precio promedio
if price_targets:
sentiment_data['avg_price_target'] = sum(price_targets) / len(price_targets)
# Almacenar en Redis para acceso rápido
redis_key = f"sentiment:{symbol}"
self.redis_client.hmset(redis_key, {
'bullish': sentiment_data['bullish_count'],
'bearish': sentiment_data['bearish_count'],
'neutral': sentiment_data['neutral_count'],
'weighted': sentiment_data['weighted_sentiment'],
'avg_target': sentiment_data['avg_price_target'],
'timestamp': sentiment_data['timestamp']
})
self.redis_client.expire(redis_key, 3600) # 1 hora TTL
# También almacenar en MongoDB para histórico
await self.db.market_sentiment.insert_one(sentiment_data)
return sentiment_data
async def store_alert(self, alert_data: Dict[str, Any]) -> str:
"""
Almacena una configuración de alerta en la base de datos
Args:
alert_data: Datos de la alerta
Returns:
ID de la alerta insertada
"""
# Validar datos mínimos requeridos
required_fields = ['user_id', 'symbol', 'alert_type', 'conditions']
for field in required_fields:
if field not in alert_data:
raise ValueError(f"Campo requerido faltante: {field}")
# Campos por defecto
alert_data.setdefault('active', True)
alert_data.setdefault('created_at', int(time.time() * 1000))
# Almacenar la alerta
result = await self.db.alerts.insert_one(alert_data)
return str(result.inserted_id)
async def get_active_alerts_for_symbol(self, symbol: str) -> List[Dict[str, Any]]:
"""
Obtiene todas las alertas activas para un símbolo específico
Args:
symbol: Símbolo de la criptomoneda
Returns:
Lista de alertas activas
"""
cursor = self.db.alerts.find({
'symbol': symbol,
'active': True
})
return await cursor.to_list(length=None)
async def deactivate_alert(self, alert_id: str) -> bool:
"""
Desactiva una alerta
Args:
alert_id: ID de la alerta
Returns:
True si se desactivó correctamente, False en caso contrario
"""
result = await self.db.alerts.update_one(
{'_id': alert_id},
{'$set': {'active': False, 'deactivated_at': int(time.time() * 1000)}}
)
return result.modified_count > 0
async def create_user(self, user_data: Dict[str, Any]) -> str:
"""
Crea un nuevo usuario en la base de datos
Args:
user_data: Datos del usuario
Returns:
ID del usuario creado
"""
# Asegurar campos requeridos
required_fields = ['username', 'email', 'password_hash']
for field in required_fields:
if field not in user_data:
raise ValueError(f"Campo requerido faltante: {field}")
# Campos por defecto
user_data