computer: renames

This commit is contained in:
nym21
2026-03-26 23:39:28 +01:00
parent 66680368b6
commit 19d4a193ff
10 changed files with 118 additions and 101 deletions

View File

@@ -44,13 +44,13 @@ def test_fetch_typed_series():
c = client.series.prices.split.close.usd.by.day1().tail(10).fetch()
print(c)
d = (
client.series.market.dca.period.lump_sum_stack._10y.usd.by.day1()
client.series.investing.period.lump_sum_stack._10y.usd.by.day1()
.tail(10)
.fetch()
)
print(d)
e = (
client.series.market.dca.class_.cost_basis.from_2017.usd.by.day1()
client.series.investing.class_.dca_cost_basis.from_2017.usd.by.day1()
.tail(10)
.fetch()
)