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 !
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
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)"
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 !
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
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
Hey, send me an email at info@deepcharts.xyz and I’ll help you out
Sent an email with details. Thanks!