Closed shadiakiki1986 closed 6 years ago
These 3 pictures show the menu bar with the 3 different pages ( Trades, Portfolio, Prices)
And this picture shows the pandas dataframe as a list, the problem is the overlapping with the menu bar
migrated to https://github.com/SSOC18/ib-kivy/issues/2
Hi @RaedZorkot
While we wait for the IB credentials for a paper trading account, let's start with build a Graphical User Interface that will wrap the code that will fetch prices from IB TWS.
We will use kivy as it's cross-platform, based on python, and well-maintained.
Steps
prices
is clicked, it should display a pandas dataframeimport pandas as pd; df = pd.DataFrame({'symbol': ['a','b','c'], 'close': [100, 120, 90]})
for nowportfolio
is clicked, it should show another pandas dataframeimport pandas as pd; df = pd.DataFrame({'symbol': ['a','b','c'], 'position': [1,2,3]})
for nowtrades
is clicked, it should show another pandas dataframeimport pandas as pd; df = pd.DataFrame({'symbol': ['a','b','c'], 'qty': [1, -1, 0]})
for now