Files
pandas-ta/tests/data.py
T
2019-02-26 13:31:07 -08:00

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)