Snippets Collections
def print_data_chart():
    data = pd.read_csv("USDCAD.csv")
    chart_data = go.Candlestick(x=data['time'], open=data['open'], high=data['high'], low=data['low'], close=data['coose'])
star

Mon Sep 05 2022 12:28:06 GMT+0000 (Coordinated Universal Time) https://www.conorjohanlon.com/plot-a-candlestick-chart-for-stocks-forex-or-crypto-in-python/

#python #plot #chart #forex

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension