From 4087fcf13e8adf1a0899840b0efa17b8b0943a04 Mon Sep 17 00:00:00 2001 From: edtechre Date: Tue, 7 Jan 2025 17:32:06 -0800 Subject: [PATCH] Adds auto_adjust documentation. --- src/pybroker/data.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pybroker/data.py b/src/pybroker/data.py index 1a5506d..38a590f 100644 --- a/src/pybroker/data.py +++ b/src/pybroker/data.py @@ -462,13 +462,13 @@ def _fetch_data( class YFinance(DataSource): r"""Retrieves data from `Yahoo Finance `_\ . - Attributes: - ADJ_CLOSE: Column name of adjusted close prices. - Args: auto_adjust: Whether to auto adjust close prices. If ``True``, then adjusted close prices are stored in the ``close`` column. Defaults to ``False``. + + Attributes: + ADJ_CLOSE: Column name of adjusted close prices. """ ADJ_CLOSE: Final = "adj_close"