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

Fixes issue 2344 empty result for get splits #2346

Closed
wants to merge 2 commits into from
Closed

Conversation

JanMkl
Copy link
Contributor

@JanMkl JanMkl commented Mar 7, 2025

Simple fix for #2344. Checks the current history that it contains the timescale we expect for these functions if not refetch the history.

  • Added check in get_history_metadata that if cached metadata doesn't contain trading periods then fetch intra day history.
  • Added check that if cached history is not max period then refetch the history for get_dividends, get_capital_gains, get_splits and get_actions.

This pull request can be discarded if the larger rework #2345 is completed.

- Added check in get_history_metadata that if cached metadata doesn't contain
  trading periods then fetch intra day history.
- Added check that if cached history is not max period then refetch the history
  for get_dividends, get_capital_gains, get_splits and get_actions.
@JanMkl JanMkl mentioned this pull request Mar 7, 2025
@JanMkl
Copy link
Contributor Author

JanMkl commented Mar 18, 2025

Added some tests for basic validation of the data received from get_history_metadata, get_dividends, get_capital_gains, get_splits and get_actions.

If this PR is decided to be merged I can squash these to a single commit but until then I'll let it be two separate commits as the test could be cherry picked to rework #2345 if/when that is completed.

@dhruvan2006
Copy link
Contributor

@JanMkl I have implemented the caching mechanism in #2345. You can have a gander

- Added test_get_history_metadata checking that metadata
  contains trading periods and that data type is correct.
- Added test_get_dividends, test_get_splits test_get_capital_gains
  and test_get_actions checking that data is returned and contains
  correct data types.
@JanMkl
Copy link
Contributor Author

JanMkl commented Mar 20, 2025

Closing this as #2345 is merged.

@ValueRaider do you see any value adding the tests on this PR to project? I can open a separate PR for those if you see them as useful.

@JanMkl JanMkl closed this Mar 20, 2025
@dhruvan2006
Copy link
Contributor

There's already a few tests here, maybe you can expand them?

def test_dividends(self):
data = self.ticker.dividends
self.assertIsInstance(data, pd.Series, "data has wrong type")
self.assertFalse(data.empty, "data is empty")
def test_splits(self):
data = self.ticker.splits
self.assertIsInstance(data, pd.Series, "data has wrong type")
# self.assertFalse(data.empty, "data is empty")
def test_actions(self):
data = self.ticker.actions
self.assertIsInstance(data, pd.DataFrame, "data has wrong type")
self.assertFalse(data.empty, "data is empty")

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants