mirror of
https://github.com/webclinic017/drift.git
synced 2026-08-04 06:37:45 +00:00
7 lines
198 B
Python
7 lines
198 B
Python
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 |