PyFacts/test.py

35 lines
783 B
Python
Raw Normal View History

# from fincal.core import FincalOptions
2022-04-29 02:13:06 +00:00
import fincal as fc
2022-02-22 07:35:54 +00:00
data = [
2022-04-29 02:13:06 +00:00
("2022-01-01", 150),
("2022-01-02", 152),
("2022-01-03", 151),
("2022-01-04", 154),
("2022-01-05", 150),
("2022-01-06", 157),
("2022-01-07", 155),
("2022-01-08", 158),
("2022-01-09", 162),
("2022-01-10", 160),
("2022-01-11", 156),
("2022-01-12", 162),
("2023-01-01", 164),
("2023-01-02", 161),
("2023-01-03", 167),
("2023-01-04", 168),
]
2022-04-29 02:13:06 +00:00
ts = fc.TimeSeries(data, frequency="D", date_format="%Y-%d-%m")
print(ts)
2022-02-22 07:35:54 +00:00
2022-04-29 02:13:06 +00:00
sharpe = fc.sharpe_ratio(
ts,
risk_free_rate=(1 + 0.15) ** (1 / 12) - 1,
from_date="2022-02-01",
to_date="2023-04-01",
frequency="M",
return_period_unit="months",
return_period_value=1,
)
print(f"{sharpe=}")