Welcome to the Stockalyze Community 👋
A friendly place for Stockalyze users to share ideas, discuss the platform, learn, and grow together.
Quote from: Sacha on June 01, 2026, 03:32:56 AMUse of yahoo finance automatically adjusts prices. The problem you are observing with SBIN.NS is that there was a recent dividend announcement and prices got adjusted accordingly. On chart you don't want to see that. Stockalyze should improve in such cases. We will have an update soon with the fix.
Thanks again for spotting and reporting it.
Quote from: Sacha on June 01, 2026, 01:57:27 AMYou are right about the problem. Even using yfinance gives the wrong output.
We are investigating it.
Thank you for reporting about the problem. We hope to fix it soon.import yfinance as yf
ticker = yf.Ticker("SBIN.NS")
hist = ticker.history(start="2026-04-10")
hist_csv = hist.to_csv()
print(hist_csv)
Date,Open,High,Low,Close,Volume,Dividends,Stock Splits
...
2026-04-17 00:00:00+05:30,1048.1077725199245,1062.9895516597985,1041.2317140310404,1061.1231689453125,16823879,0.0,0.0
2026-04-20 00:00:00+05:30,1061.1723665018162,1101.102525826513,1056.8010858019393,1088.2344970703125,31179584,0.0,0.0
2026-04-21 00:00:00+05:30,1093.6863001427537,1095.012373226544,1086.3681369836245,1092.1636962890625,16963734,0.0,0.0
...
import yfinance as yf
ticker = yf.Ticker("SBIN.NS")
hist = ticker.history(start="2026-04-10")
hist_csv = hist.to_csv()
print(hist_csv)
Date,Open,High,Low,Close,Volume,Dividends,Stock Splits
...
2026-04-17 00:00:00+05:30,1048.1077725199245,1062.9895516597985,1041.2317140310404,1061.1231689453125,16823879,0.0,0.0
2026-04-20 00:00:00+05:30,1061.1723665018162,1101.102525826513,1056.8010858019393,1088.2344970703125,31179584,0.0,0.0
2026-04-21 00:00:00+05:30,1093.6863001427537,1095.012373226544,1086.3681369836245,1092.1636962890625,16963734,0.0,0.0
...
Quote from: Sacha on May 28, 2026, 02:20:46 AMNo. It wasn't showing in yahoo finance, please check the image I had sent.
Anyways, as of now the data is available in the yahoo finance and so also in Stockalyze.