Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sync dev -> main #1927

Merged
merged 26 commits into from
May 19, 2024
Merged

sync dev -> main #1927

merged 26 commits into from
May 19, 2024

Commits on Mar 1, 2024

  1. Configuration menu
    Copy the full SHA
    942a26f View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2024

  1. Merge pull request #1874 from ranaroussi/fix/price-repair-subtle-bug

    Fix potential for price repair to discard price=0 rows
    ValueRaider authored Mar 4, 2024
    Configuration menu
    Copy the full SHA
    1967e97 View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2024

  1. Replace dead 'appdirs' package with 'platformdirs'

    ValueRaider authored and ValueRaider committed Apr 6, 2024
    Configuration menu
    Copy the full SHA
    812931f View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1896 from ranaroussi/feature/replace-dead-appdirs

    Replace dead 'appdirs' package with 'platformdirs'
    ValueRaider authored Apr 6, 2024
    Configuration menu
    Copy the full SHA
    88e8ddb View commit details
    Browse the repository at this point in the history
  3. Deprecate 'pandas_datareader', remove a deprecated argument.

    Drop official support for 'pandas_datareader', tag pdr_override() as deprecated.
    Also removed deprecated argument 'download(show_errors)'.
    ValueRaider authored and ValueRaider committed Apr 6, 2024
    Configuration menu
    Copy the full SHA
    48e9075 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1897 from ranaroussi/feature/deprecate-pdr

    Deprecate 'pandas_datareader', remove a deprecated argument
    ValueRaider authored Apr 6, 2024
    Configuration menu
    Copy the full SHA
    82a3145 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2024

  1. Configuration menu
    Copy the full SHA
    f8e8eec View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1913 from vittoboa/add_functools_wraps_to_wrapper

    Fix help(yf.download) not showing the information about the function
    ValueRaider authored Apr 22, 2024
    Configuration menu
    Copy the full SHA
    94e3833 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2024

  1. Merge pull request #1917 from ranaroussi/main

    sync main -> dev
    ValueRaider authored Apr 24, 2024
    Configuration menu
    Copy the full SHA
    bb47cd4 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2024

  1. Configuration menu
    Copy the full SHA
    2dcbe34 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2024

  1. Merge pull request #1920 from ranaroussi/feature/price-repair-fx

    Don't price-repair FX volume=0, is normal
    ValueRaider authored Apr 28, 2024
    Configuration menu
    Copy the full SHA
    84ba6d7 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2024

  1. Fix: datetime.datetime.utcnow() is deprecated ...

    Python 3.12 deprecates datetime.datetime.utcnow().
    Instead of switching to datetime.datetime.now(datetime.UTC), which won't work in Python 3.11,
    just switch to Pandas.utcnow().
    ValueRaider committed May 2, 2024
    Configuration menu
    Copy the full SHA
    dc5c718 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2024

  1. Configuration menu
    Copy the full SHA
    098e776 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2024

  1. Configuration menu
    Copy the full SHA
    685ef71 View commit details
    Browse the repository at this point in the history
  2. Rename errors from YFinance to YF

    elibroftw authored and marcofognog committed May 10, 2024
    Configuration menu
    Copy the full SHA
    ee87a95 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    30fdc96 View commit details
    Browse the repository at this point in the history
  4. Add raise missing ticker tests, replace deprecated datetime methods

    - renamed test files conform with standards
    - replaced utcfromtimestamp
    elibroftw authored and marcofognog committed May 10, 2024
    Configuration menu
    Copy the full SHA
    5a683b9 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2024

  1. Fix switching session from/to requests_cache

    Session switch logic was not recalculating 'self._session_is_caching'.
    Also removed message 'help stress-test cookie & crumb & requests_cache', clearly works now.
    ValueRaider committed May 11, 2024
    Configuration menu
    Copy the full SHA
    ac4efa3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7628bec View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1928 from marcofognog/dev

    Add more specific error thowring base on PR 1918
    ValueRaider authored May 11, 2024
    Configuration menu
    Copy the full SHA
    070f135 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1930 from ranaroussi/fix/session-switching

    Fix switching session from/to requests_cache
    ValueRaider authored May 11, 2024
    Configuration menu
    Copy the full SHA
    7c41434 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2024

  1. Price repair: improve 'sudden change' repair for splits & currency

    Original logic for repairing missing split adjustment only checked latest split.
    Improved logic checks ALL splits in data, because any can be missing.
    
    Then related changes to 'sudden change detection':
    - use prices median not mean, reduce sensitivity to noise.
    - handle Kuwait Dinar, which sub-divides into 1000x not 100x.
    ValueRaider committed May 19, 2024
    Configuration menu
    Copy the full SHA
    97f35b7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1931 from ranaroussi/feature/improve-price-repair…

    …-bad-splits
    
     Price repair: improve 'sudden change' repair for splits & currency
    ValueRaider authored May 19, 2024
    Configuration menu
    Copy the full SHA
    da1c466 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f3c9f99 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1941 from ranaroussi/main

    sync main -> dev
    ValueRaider authored May 19, 2024
    Configuration menu
    Copy the full SHA
    cb691df View commit details
    Browse the repository at this point in the history
  5. Ruff fixes

    ValueRaider committed May 19, 2024
    Configuration menu
    Copy the full SHA
    fe00fd5 View commit details
    Browse the repository at this point in the history