Derive return metrics from Portfolio and guard HHI range - #115
Merged
Conversation
Wire Portfolio.record_value() into the simulation loop so the per-day valuation series is tracked on the portfolio, and derive Sharpe ratio, ROI, max drawdown, and annualized return from Portfolio.calculate_returns() instead of the ad-hoc computation in the trainer closure. Document the HHI renormalization divergence from the seed's raw-fraction form (which can go negative for cash-heavy portfolios) and add a regression test pinning hhi_normalized to [0, 1].
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Portfolio.record_value()into the simulation loop so the per-day valuation series is tracked on the portfolio itself.Portfolio.calculate_returns()in the trainer closure instead of an ad-hoc computation.hhi_normalizedto[0, 1].Testing