VarunS2002 / Python-NSE-Option-Chain-Analyzer

The NSE has a website which displays the option chain in near real-time. This program retrieves this data from the NSE site and then generates useful analysis of the Option Chain for the specified Index or Stock. It also continuously refreshes the Option Chain and visually displays the trend in various indicators useful for Technical Analysis.
GNU General Public License v3.0
390 stars 205 forks source link

Fixed errors with tksheet versions 5.0.29+ #34

Closed yjagota closed 2 years ago

yjagota commented 2 years ago

Just a small change that fixes issues when tksheet v5.0.29 or above is used with this script. The problem is that the add_columns parameter to insert_row was defaulted to false in v5.0.29 of tksheet, which caused no data to be loaded to the table, and as a result, caused error at self.sheet.see(last_row) as there are no rows in the table.

Fixes #24, #25, #28, #32, #33.

VarunS2002 commented 2 years ago

Thanks for the fix ! @yjagota