Skip to content

Commit

Permalink
Merge pull request #11 from coinmetrics/10-fix-pipeline
Browse files Browse the repository at this point in the history
Fix Pipeline
  • Loading branch information
mtrudeau-foundry-digital authored Dec 4, 2024
2 parents 87c3f56 + 4559373 commit f4a8d05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions precog/utils/cm_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def get_CM_ReferenceRate(
parallelize: bool = False,
time_inc_parallel: pd.Timedelta = pd.Timedelta("1h"),
**kwargs,
) -> pd.DataFrame:
) -> pd.DataFrame:
"""Fetches CM Reference Rate for specific asset ticker or list of tickers from CoinMetrics Python client.
Args:
Expand All @@ -39,7 +39,7 @@ def get_CM_ReferenceRate(
end_inclusive (bool, optional): Whether to include a data point occuring at the "end" time. Defaults to True.
frequency (str, optional): Frequency of prices - '200ms', '1s', '1m', '1m', '1d'. Defaults to "1s".
page_size (int, optional): Page size of return, recommended 10000. Defaults to 10000.
parallelize (bool, optional): Whether to parallelize query into multiple queries.
parallelize (bool, optional): Whether to parallelize query into multiple queries.
Can speed up retrieval but may go over usage limits. Defaults to False.
time_inc_parallel (pd.Timedelta, optional): If using parallelize, time interval queried by each thread. Defaults to pd.Timedelta("1h").
Expand Down

0 comments on commit f4a8d05

Please sign in to comment.