File size: 20,947 Bytes
c7ee5b1 1e6320d c7ee5b1 dfe618f c7ee5b1 dfe618f c7ee5b1 dfe618f c7ee5b1 fe7c3e2 c7ee5b1 1e6320d c7ee5b1 1e6320d c7ee5b1 1e6320d c7ee5b1 1e6320d c7ee5b1 1e6320d c7ee5b1 9bf8bc5 c7ee5b1 491dfdd d07b262 491dfdd d07b262 491dfdd d07b262 491dfdd d07b262 491dfdd d07b262 491dfdd d07b262 491dfdd d07b262 491dfdd c7ee5b1 9bf8bc5 c7ee5b1 dfe618f c7ee5b1 dfe618f c7ee5b1 f05849c c7f64de 432f713 c7f64de 432f713 c7f64de b5a4c95 432f713 b5a4c95 432f713 b5a4c95 c88030c | 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 | import uuid
import datetime
from typing import List, Optional
from sqlalchemy import select, update, delete, and_, func
from sqlalchemy.ext.asyncio import AsyncSession
from sqlalchemy.dialects.postgresql import insert as pg_insert
from backend.app.database import models
from backend.app.schemas import schemas
# ==========================================
# USER OPERATIONS
# ==========================================
async def get_user(db: AsyncSession, user_id: uuid.UUID) -> Optional[models.User]:
result = await db.execute(select(models.User).where(models.User.id == user_id))
return result.scalars().first()
async def get_user_by_email(db: AsyncSession, email: str) -> Optional[models.User]:
result = await db.execute(select(models.User).where(models.User.email == email))
return result.scalars().first()
async def get_user_by_google_id(db: AsyncSession, google_id: str) -> Optional[models.User]:
result = await db.execute(select(models.User).where(models.User.google_id == google_id))
return result.scalars().first()
async def create_user(db: AsyncSession, user_in: schemas.UserBase, google_id: str) -> models.User:
db_user = models.User(
email=user_in.email,
full_name=user_in.full_name,
picture_url=user_in.picture_url,
google_id=google_id,
credits=5, # Starting free credits
last_credit_refresh=datetime.datetime.now(datetime.timezone.utc)
)
db.add(db_user)
await db.commit()
await db.refresh(db_user)
return db_user
async def refresh_user_credits(db: AsyncSession, user: models.User) -> models.User:
"""
Checks and applies user refreshes:
- For Free tier: resets credits to 5 every 7 days.
- For Pro tier: resets monthly_messages_used to 0 every 30 days.
"""
now = datetime.datetime.now(datetime.timezone.utc)
updated = False
if user.subscription_tier == "free":
time_elapsed = now - user.last_credit_refresh
if time_elapsed >= datetime.timedelta(days=7):
user.credits = 5
user.last_credit_refresh = now
updated = True
if user.subscription_tier == "pro":
billing_elapsed = now - user.last_billing_date
if billing_elapsed >= datetime.timedelta(days=30):
user.monthly_messages_used = 0
user.last_billing_date = now
updated = True
if updated:
db.add(user)
await db.commit()
await db.refresh(user)
return user
async def deduct_user_credit(db: AsyncSession, user_id: uuid.UUID) -> bool:
"""
Deducts 1 credit from the user's account.
Returns True if deduction succeeded, False if user has 0 credits.
"""
user = await get_user(db, user_id)
if not user:
return False
if user.email == "karanshelar8775@gmail.com":
return True
if user.credits <= 0:
return False
user.credits -= 1
db.add(user)
await db.commit()
return True
# ==========================================
# WATCHLIST OPERATIONS
# ==========================================
async def get_user_watchlist(db: AsyncSession, user_id: uuid.UUID) -> List[models.Watchlist]:
# Single query ordered by creation time (oldest first so sidebar shows consistent ordering)
result = await db.execute(
select(models.Watchlist)
.where(models.Watchlist.user_id == user_id)
.order_by(models.Watchlist.created_at.asc())
)
return list(result.scalars().all())
async def add_to_watchlist(db: AsyncSession, user_id: uuid.UUID, ticker: str) -> models.Watchlist:
# Check if already exists to prevent duplicate entries
existing_result = await db.execute(
select(models.Watchlist).where(
and_(models.Watchlist.user_id == user_id, models.Watchlist.ticker == ticker.upper())
)
)
# Store the scalar before the cursor is consumed; calling .first() twice on the
# same cursor always returns None on the second call (SQLAlchemy cursor exhaustion).
existing_item = existing_result.scalars().first()
if existing_item:
return existing_item
db_watchlist = models.Watchlist(user_id=user_id, ticker=ticker.upper())
db.add(db_watchlist)
await db.commit()
await db.refresh(db_watchlist)
return db_watchlist
async def remove_from_watchlist(db: AsyncSession, user_id: uuid.UUID, ticker: str) -> bool:
result = await db.execute(
delete(models.Watchlist).where(
and_(models.Watchlist.user_id == user_id, models.Watchlist.ticker == ticker.upper())
)
)
await db.commit()
return result.rowcount > 0
# ==========================================
# ALERT OPERATIONS
# ==========================================
async def get_user_alerts(db: AsyncSession, user_id: uuid.UUID) -> List[models.Alert]:
result = await db.execute(
select(models.Alert)
.where(models.Alert.user_id == user_id)
.order_by(models.Alert.created_at.desc())
)
return list(result.scalars().all())
async def get_active_alerts(db: AsyncSession) -> List[models.Alert]:
result = await db.execute(
select(models.Alert).where(models.Alert.is_active == True)
)
return list(result.scalars().all())
async def create_alert(db: AsyncSession, user_id: uuid.UUID, alert_in: schemas.AlertCreate) -> models.Alert:
db_alert = models.Alert(
user_id=user_id,
ticker=alert_in.ticker.upper(),
target_price=alert_in.target_price,
condition=alert_in.condition.lower(),
is_active=True
)
db.add(db_alert)
await db.commit()
await db.refresh(db_alert)
return db_alert
async def deactivate_alert(db: AsyncSession, alert_id: uuid.UUID) -> bool:
result = await db.execute(
update(models.Alert)
.where(models.Alert.id == alert_id)
.values(is_active=False)
)
await db.commit()
return result.rowcount > 0
async def trigger_alert(db: AsyncSession, alert_id: uuid.UUID) -> bool:
result = await db.execute(
update(models.Alert)
.where(models.Alert.id == alert_id)
.values(is_triggered=True, last_notified_at=func.now())
)
await db.commit()
return result.rowcount > 0
async def update_alert_notification_time(db: AsyncSession, alert_id: uuid.UUID) -> bool:
result = await db.execute(
update(models.Alert)
.where(models.Alert.id == alert_id)
.values(last_notified_at=func.now())
)
await db.commit()
return result.rowcount > 0
# ==========================================
# STOCK HISTORY OPERATIONS
# ==========================================
async def get_stock_history(db: AsyncSession, ticker: str, limit: int = 100) -> List[models.StockHistory]:
result = await db.execute(
select(models.StockHistory)
.where(models.StockHistory.ticker == ticker.upper())
.order_by(models.StockHistory.timestamp.desc())
.limit(limit)
)
history = list(result.scalars().all())
# If database has under 100 records for this ticker, dynamically backfill from yfinance.
# We use a 15-minute Redis-based lockout to avoid hammering yfinance when database is cold.
if len(history) < 100:
import redis
from backend.app.config.settings import settings
# Connect to Redis logical DB 1 (same as service cache)
redis_client = None
if settings.REDIS_URL:
try:
redis_cache_url = settings.REDIS_URL
if redis_cache_url.endswith("/0"):
redis_cache_url = redis_cache_url[:-2] + "/1"
elif not any(redis_cache_url.endswith(f"/{i}") for i in range(16)):
redis_cache_url = redis_cache_url.rstrip("/") + "/1"
redis_client = redis.from_url(redis_cache_url, decode_responses=True)
except Exception:
pass
lock_key = f"quantiq:backfill_lock:{ticker.upper()}"
already_attempted = False
if redis_client:
try:
already_attempted = bool(redis_client.get(lock_key))
except Exception:
pass
if not already_attempted:
if redis_client:
try:
redis_client.setex(lock_key, 900, "1") # 15 minutes TTL
except Exception:
pass
import yfinance as yf
import asyncio
try:
# yfinance allows fetching 1m interval historical data up to 30 days. We fetch last 5 days.
yf_ticker = yf.Ticker(ticker.upper())
df = await asyncio.get_event_loop().run_in_executor(
None,
lambda: yf_ticker.history(period="5d", interval="1m")
)
if df is not None and not df.empty:
df = df.reset_index()
# Identify timestamp column
time_col = None
for col in ['Date', 'Datetime', 'index', 'timestamp']:
if col in df.columns:
time_col = col
break
if time_col:
candles_to_insert = []
for _, row in df.iterrows():
ts = row[time_col]
if hasattr(ts, 'to_pydatetime'):
ts_dt = ts.to_pydatetime()
elif isinstance(ts, str):
ts_dt = datetime.datetime.fromisoformat(ts)
else:
ts_dt = ts
if ts_dt.tzinfo is not None:
ts_dt = ts_dt.replace(tzinfo=None)
candles_to_insert.append({
"ticker": ticker.upper(),
"timestamp": ts_dt,
"open": float(row["Open"]),
"high": float(row["High"]),
"low": float(row["Low"]),
"close": float(row["Close"]),
"volume": int(row["Volume"]) if "Volume" in row else 0
})
if candles_to_insert:
# Perform batch insert ignoring duplicates
stmt = pg_insert(models.StockHistory).values(candles_to_insert)
await db.execute(stmt.on_conflict_do_nothing(index_elements=["ticker", "timestamp"]))
await db.commit()
# Re-query the database with the fully backfilled candles
result = await db.execute(
select(models.StockHistory)
.where(models.StockHistory.ticker == ticker.upper())
.order_by(models.StockHistory.timestamp.desc())
.limit(limit)
)
history = list(result.scalars().all())
except Exception as e:
print(f"MLOps Dynamic Backfill: Failed to populate history for {ticker}: {e}")
# Return in chronological order (oldest to newest) for indicators
history.reverse()
return history
async def insert_stock_candle(db: AsyncSession, candle: schemas.StockHistoryBase) -> None:
"""
Inserts a single candle record. If it already exists, do nothing.
"""
stmt = pg_insert(models.StockHistory).values(
ticker=candle.ticker.upper(),
timestamp=candle.timestamp,
open=candle.open,
high=candle.high,
low=candle.low,
close=candle.close,
volume=candle.volume
)
# PostgreSQL specific upsert: do nothing on conflict
stmt = stmt.on_conflict_do_nothing(index_elements=["ticker", "timestamp"])
await db.execute(stmt)
await db.commit()
# Check and trigger alerts for this ticker
alert_stmt = (
select(models.Alert)
.where(models.Alert.ticker == candle.ticker.upper())
.where(models.Alert.is_active == True)
.where(models.Alert.is_triggered == False)
)
alert_result = await db.execute(alert_stmt)
active_alerts = list(alert_result.scalars().all())
from backend.app.services.email_service import send_price_alert_email
for alert in active_alerts:
triggered = False
if alert.condition == "above" and candle.close >= alert.target_price:
triggered = True
elif alert.condition == "below" and candle.close <= alert.target_price:
triggered = True
if triggered:
alert.is_triggered = True
alert.last_notified_at = func.now()
db.add(alert)
await db.commit()
# Retrieve user to get their email address
user = await get_user(db, alert.user_id)
if user:
send_price_alert_email(
to_email=user.email,
ticker=alert.ticker,
condition=alert.condition,
target_price=alert.target_price,
current_price=candle.close
)
# ==========================================
# PAYMENT TRANSACTION OPERATIONS
# ==========================================
async def create_payment_transaction(
db: AsyncSession, user_id: uuid.UUID, order_id: str, amount: int, credits_credited: int
) -> models.PaymentTransaction:
db_tx = models.PaymentTransaction(
user_id=user_id,
razorpay_order_id=order_id,
amount=amount,
status="created",
credits_credited=credits_credited
)
db.add(db_tx)
await db.commit()
await db.refresh(db_tx)
return db_tx
async def capture_payment_transaction(
db: AsyncSession, order_id: str, payment_id: str
) -> Optional[models.PaymentTransaction]:
"""
Captures a pending transaction, updates status, and credits the user.
Uses a transaction block to ensure atomic operations.
"""
# 1. Fetch transaction
result = await db.execute(
select(models.PaymentTransaction).where(models.PaymentTransaction.razorpay_order_id == order_id)
)
tx = result.scalars().first()
if not tx or tx.status == "captured":
return tx
# 2. Update transaction
tx.razorpay_payment_id = payment_id
tx.status = "captured"
db.add(tx)
# 3. Credit the user and update subscription tier
user = await get_user(db, tx.user_id)
if user:
user.credits += tx.credits_credited
# Determine plan from transaction amount in Rupees
amt_rupees = tx.amount // 100
if amt_rupees == 500:
user.subscription_tier = "analyst"
user.messages_remaining += 10
elif amt_rupees == 1500:
user.subscription_tier = "trader"
user.messages_remaining += 25
elif amt_rupees in (10000, 15000):
user.subscription_tier = "pro"
user.monthly_messages_used = 0
user.last_billing_date = datetime.datetime.now(datetime.timezone.utc)
db.add(user)
await db.commit()
await db.refresh(tx)
return tx
async def create_saved_strategy(
db: AsyncSession, user_id: uuid.UUID, ticker: str, bullish_probability: int, reason: str
) -> models.SavedStrategy:
db_strategy = models.SavedStrategy(
user_id=user_id,
ticker=ticker.upper(),
bullish_probability=bullish_probability,
reason=reason
)
db.add(db_strategy)
await db.commit()
await db.refresh(db_strategy)
return db_strategy
async def get_user_saved_strategies(db: AsyncSession, user_id: uuid.UUID) -> List[models.SavedStrategy]:
result = await db.execute(
select(models.SavedStrategy)
.where(models.SavedStrategy.user_id == user_id)
.order_by(models.SavedStrategy.created_at.desc())
)
return list(result.scalars().all())
# ==========================================
# MLOPS PREDICTION LOG OPERATIONS
# ==========================================
async def create_prediction_log(
db: AsyncSession,
user_id: uuid.UUID,
ticker: str,
model_version: str,
confidence: float,
predicted_action: str,
entry_price: float,
target_price: Optional[float] = None,
stop_loss: Optional[float] = None,
asset_class: Optional[str] = None
) -> models.PredictionLog:
db_log = models.PredictionLog(
user_id=user_id,
ticker=ticker.upper(),
model_version=model_version,
confidence=confidence,
predicted_action=predicted_action,
entry_price=entry_price,
target_price=target_price,
stop_loss=stop_loss,
asset_class=asset_class,
status="pending"
)
db.add(db_log)
await db.commit()
await db.refresh(db_log)
return db_log
async def get_pending_predictions(db: AsyncSession) -> List[models.PredictionLog]:
result = await db.execute(
select(models.PredictionLog)
.where(models.PredictionLog.status == "pending")
.order_by(models.PredictionLog.timestamp.asc())
)
return list(result.scalars().all())
async def get_all_prediction_logs(db: AsyncSession, limit: int = 1000) -> List[models.PredictionLog]:
result = await db.execute(
select(models.PredictionLog)
.order_by(models.PredictionLog.timestamp.desc())
.limit(limit)
)
return list(result.scalars().all())
# ==========================================
# MLOPS STRATEGY LOG OPERATIONS
# ==========================================
async def create_strategy_log(
db: AsyncSession,
user_id: uuid.UUID,
ticker: str,
model_version: str,
bullish_probability: int,
ai_entry: float,
ai_target: float,
ai_stop_loss: float,
user_entry: float,
user_target: float,
user_stop_loss: float,
asset_class: Optional[str] = None
) -> models.StrategyLog:
db_strategy = models.StrategyLog(
user_id=user_id,
ticker=ticker.upper(),
model_version=model_version,
bullish_probability=bullish_probability,
ai_entry=ai_entry,
ai_target=ai_target,
ai_stop_loss=ai_stop_loss,
user_entry=user_entry,
user_target=user_target,
user_stop_loss=user_stop_loss,
asset_class=asset_class,
status="pending"
)
db.add(db_strategy)
await db.commit()
await db.refresh(db_strategy)
return db_strategy
async def get_pending_strategy_logs(db: AsyncSession) -> List[models.StrategyLog]:
result = await db.execute(
select(models.StrategyLog)
.where(models.StrategyLog.status == "pending")
.order_by(models.StrategyLog.timestamp.asc())
)
return list(result.scalars().all())
async def get_all_strategy_logs(db: AsyncSession, limit: int = 1000) -> List[models.StrategyLog]:
result = await db.execute(
select(models.StrategyLog)
.order_by(models.StrategyLog.timestamp.desc())
.limit(limit)
)
return list(result.scalars().all())
async def get_recently_analyzed_tickers(db: AsyncSession, user_id: uuid.UUID, limit: int = 5) -> List[str]:
"""
Retrieves the unique tickers that the specified user has analyzed recently.
"""
from sqlalchemy import func
result = await db.execute(
select(models.PredictionLog.ticker, func.max(models.PredictionLog.timestamp).label("latest"))
.where(models.PredictionLog.user_id == user_id)
.group_by(models.PredictionLog.ticker)
.order_by(func.max(models.PredictionLog.timestamp).desc())
.limit(limit)
)
return [row.ticker for row in result]
async def get_trending_tickers(db: AsyncSession, limit: int = 5) -> List[dict]:
"""
Retrieves the globally trending tickers based on analysis query count in the last 7 days.
"""
from sqlalchemy import func
cutoff = datetime.datetime.now(datetime.timezone.utc) - datetime.timedelta(days=7)
result = await db.execute(
select(models.PredictionLog.ticker, func.count(models.PredictionLog.id).label("count"))
.where(models.PredictionLog.timestamp >= cutoff)
.group_by(models.PredictionLog.ticker)
.order_by(func.count(models.PredictionLog.id).desc())
.limit(limit)
)
return [{"ticker": row.ticker, "count": row.count} for row in result] |