You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import os
|
|
|
|
import csv
|
|
|
|
|
|
|
|
|
|
|
|
def load_historical_data(directory_path='./sample-stocks/'):
|
|
|
|
historical_data = {}
|
|
|
|
|
|
|
|
file_list = [filename for filename in os.listdir(directory_path) if filename.endswith(".csv")]
|
|
|
|
for filename in file_list:
|
|
|
|
symbol = filename.replace(".csv", "")
|
|
|
|
|
|
|
|
historical_data[symbol] = {}
|
|
|
|
file_path = os.path.join(directory_path, filename)
|
|
|
|
with open(file_path, 'r') as csv_file:
|
|
|
|
csv_reader = csv.DictReader(csv_file)
|
|
|
|
historical_data[symbol] = [row['Close'] for row in csv_reader]
|
|
|
|
|
|
|
|
return historical_data
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
result = load_historical_data()
|
|
|
|
print(f'keys: {result.keys()}')
|
|
|
|
|