plotting/candlestick_chart_example.py

17 lines
490 B
Python
Raw Normal View History

from database.ohlc import ohlc
from datetime import datetime, timedelta
from plotting import CandlestickChart, plot
end_date = datetime.today().date()
2023-12-31 15:15:53 +00:00
start_date = (end_date - timedelta(days = 90))
data = ohlc('SPX.XO', '1d', start_date = start_date, end_date = end_date)
candlestick_chart = CandlestickChart(
x = data['Timestamp'],
opens = data['Open'],
highs = data['High'],
lows = data['Low'],
2024-01-03 14:32:29 +00:00
closes = data['Close'],
title = 'SPX'
)
2023-12-31 14:12:37 +00:00
plot(candlestick_chart)