6 Comments
User's avatar
DeepCharts's avatar

FYI, yfinance has made some updates over the past few months. Change the following in your code:

set yfinance to yfinance==0.2.54 when installing.

add multi_level_index=False: "data = yf.download(ticker, start=start_date, end=end_date,multi_level_index=False)"

Expand full comment
Leonard Tam's avatar

I'm interested to try, and will consider buying the premium version also. Will it be hard for me to use another Ai model, such as Deepseek? Because I will need vpn and face region blocks for Google Ai. Thank you !

Expand full comment
MJeng's avatar

I copied/pasted code with my AI key. It shows "Stock data loaded successfully for: AAPL, MSFT, GOOG". But when I click any one of them, there is no chart at all. Did I miss something? Thanks

Expand full comment
hup2's avatar

Hi. Try using this : fig = go.Figure(data=[

go.Candlestick(

x=[op for op in data.index],

open=[op[0] for op in data['Open'].values],

high=[op[0] for op in data['High'].values],

low=[op[0] for op in data['Low'].values],

close=[op[0] for op in data['Close'].values],

name="Candlestick"

)

])

You will need to comment out the indicators for now, still working on that

Expand full comment
User's avatar
Comment removed
Feb 18
Comment removed
Expand full comment
DeepCharts's avatar

Hey, send me an email at info@deepcharts.xyz and I’ll help you out

Expand full comment
DeeperCharts's avatar

Sent an email with details. Thanks!

Expand full comment