mirror of
https://github.com/wassname/pandas-ta.git
synced 2026-07-12 00:50:09 +08:00
5 lines
227 B
Python
5 lines
227 B
Python
from pandas import read_csv
|
|
|
|
CORRELATION_THRESHOLD = 0.99 # Less than 0.99 is undesirable
|
|
VERBOSE = True
|
|
sample_data = read_csv('data/sample.csv', index_col=0, parse_dates=True, infer_datetime_format=False, keep_date_col=True) |