2022-01-03 13:57:36 +01:00
|
|
|
import pandas as pd
|
2022-01-04 11:44:35 +01:00
|
|
|
import numpy as np
|
|
|
|
|
from scipy.stats import shapiro
|
2022-01-03 13:57:36 +01:00
|
|
|
|
2022-02-17 19:22:17 +01:00
|
|
|
|
2022-01-03 13:57:36 +01:00
|
|
|
def get_close_low_high(df: pd.DataFrame) -> tuple[pd.Series, pd.Series, pd.Series]:
|
2022-02-17 19:22:17 +01:00
|
|
|
close = df["close"]
|
|
|
|
|
low = df["low"]
|
|
|
|
|
high = df["high"]
|
2022-01-04 11:44:35 +01:00
|
|
|
return close, low, high
|