Dmitry Beresnev commited on
Commit ·
0f98bc8
1
Parent(s): deaa7ee
fix max tickers limit
Browse files- portfolio_calculator.py +1 -1
portfolio_calculator.py
CHANGED
|
@@ -28,7 +28,7 @@ logger = logging.getLogger(__name__)
|
|
| 28 |
# Constants
|
| 29 |
TRADING_DAYS_PER_YEAR = 252
|
| 30 |
MIN_DATA_POINTS = 30
|
| 31 |
-
MAX_TICKERS =
|
| 32 |
|
| 33 |
|
| 34 |
# Rate limiter: Max 5 calls per 10 seconds per ticker (conservative for Yahoo Finance)
|
|
|
|
| 28 |
# Constants
|
| 29 |
TRADING_DAYS_PER_YEAR = 252
|
| 30 |
MIN_DATA_POINTS = 30
|
| 31 |
+
MAX_TICKERS = 100
|
| 32 |
|
| 33 |
|
| 34 |
# Rate limiter: Max 5 calls per 10 seconds per ticker (conservative for Yahoo Finance)
|