release: v0.19.0

This commit is contained in:
github-actions[bot]
2026-08-23 13:31:37 +00:00
parent a5f51e2fde
commit 44f8ed1a91
43 changed files with 2666 additions and 205 deletions
+8 -1
View File
@@ -1,4 +1,4 @@
"""Example 17: Per-Venue Fees — charge each symbol its own fee schedule.
"""Per-venue fees — charge each symbol its own fee schedule.
Real desks route different assets to different exchanges (or liquidity tiers),
each with its own maker/taker fees, funding column and borrow rate. ``FeeConfig``
@@ -9,6 +9,13 @@ Here a 4-asset momentum portfolio executes the majors (BTC, ETH) on a cheap
venue and the alts (XRP, DOT) on a more expensive one. Single-provider universe,
so it runs without Pro.
Demonstrates:
- FeeConfig.per_venue: named fee schedules in one book
- symbol_venue: which symbol trades where
- the cost gap between routing majors and alts differently
Data: shared store — real market data from `data/` (see examples/README.md)
Usage:
python examples/17_per_venue_fees.py
"""