mirror of
https://github.com/webclinic017/drift.git
synced 2026-08-16 04:18:07 +00:00
feat(Data): added daily_glassnode DataCollection (#99)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import pandas as pd
|
||||
|
||||
def get_close_low_high(df: pd.DataFrame) -> tuple[pd.Series, pd.Series, pd.Series]:
|
||||
close = df['close']
|
||||
low = df['low']
|
||||
high = df['high']
|
||||
return close, low, high
|
||||
Reference in New Issue
Block a user