Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,17 @@ dist/
# Project-specific ignores
# -----------------------------------------------------------------------------

# Generated HTML reports (timestamped outputs)
# Generated HTML reports (all HTML in output folder and subfolders)
output/**/*.html
output/*.html

# Custom data imports (user-provided files)
data/import/

# Cached price data (regenerated on run)
data/prices.parquet
.parquet

# Private documentation
docs/private/
# Cached price data (all parquet files in data folder and subfolders)
data/**/*.parquet
data/*.parquet
data/*.csv

# -----------------------------------------------------------------------------
# Environments
Expand All @@ -40,6 +39,7 @@ docs/private/
.venv
venv/
env/
docs/private/

# -----------------------------------------------------------------------------
# Testing & Coverage
Expand Down
2 changes: 1 addition & 1 deletion config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,4 @@ hypothesis:
rebalancing:
frequency: "quarterly" # Options: daily, weekly, monthly, quarterly, annual
method: "calendar" # calendar = rebalance at end of period
trading_fee_bps: 10 # Trading cost in basis points per turnover (10 bps = 0.10%)
trading_fee_bps: 25 # Trading cost in basis points per turnover (10 bps = 0.10%)
Copy link

Copilot AI Dec 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment still states "10 bps = 0.10%" as an example, but this is now outdated since the value changed to 25 bps. The comment should be updated to reflect the new value: "Trading cost in basis points per turnover (25 bps = 0.25%)".

Suggested change
trading_fee_bps: 25 # Trading cost in basis points per turnover (10 bps = 0.10%)
trading_fee_bps: 25 # Trading cost in basis points per turnover (25 bps = 0.25%)

Copilot uses AI. Check for mistakes.
6 changes: 0 additions & 6 deletions data/prices_metadata.csv

This file was deleted.

Binary file removed data/risk_free_rate.parquet
Binary file not shown.
Loading