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

Multiple Tab in Tkinter Main Window #57

Closed codewithsud closed 6 months ago

codewithsud commented 1 year ago

Hello Varun, Firstly, thanks for this update and development of Option Chain Analyzer. Script shows the skills you are carrying with you.

I downloaded the version 9 months back and since then modified/updated it for additional data and enhancements. i have also implemented live analysis of Index futures and Equity data and it works superbly for me. Only problem is, i need to run three different python script for these analysis.

Can you please suggest, how i can create Tab in the current GUI to add my other two analysis and present these live data in two different tab. I understand you might be busy your day to day activities, please guide me through the same. i tried to port this GUI from TKINTER to QT5, but not successfull, yet.

I have attached the snapshot of other analysis i do for my trading. i just want to see these data in same window and different tab. These are still, work in progress.

Thanks, Shudhanshu Option Chain Future Money Flow Analysis Sheet Modified Option Analyzer Sheet Cash Money Flow Analysis- Top 15 Stocks

VarunS2002 commented 1 year ago

@codewithsud It's great that you have customised the program based on your needs! The library I use for the tables is tksheet. I do not know whether it supports tabs like Excel supports multiple sheets. One solution is that you can keep retrieving and calculating all the data that you need and store it in variables and then have a menu option to switch between what you are displaying. Did you get what I am saying?