feat: add fundamental data providers (Alpha Vantage, FMP, Yahoo Finance) with rotation

This commit is contained in:
Viktor Barzin 2026-02-23 21:41:16 +00:00
parent 2398e8faf6
commit aa47e896dd
No known key found for this signature in database
GPG key ID: 0EB088298288D958
7 changed files with 704 additions and 0 deletions

View file

@ -0,0 +1,6 @@
"""Fundamental data providers for stock financial metrics."""
from shared.fundamentals.base import FundamentalsProvider
from shared.fundamentals.rotating import RotatingProvider
__all__ = ["FundamentalsProvider", "RotatingProvider"]