Go to file
2024-11-15 06:04:20 -08:00
assets
strategies Add script for generating swing trading signals based on declines 2024-11-15 06:04:20 -08:00
.gitignore
daily_data.py Verify that real-time intraday data exists before appening to historical daily data 2024-11-12 07:20:13 -08:00
dashboard.py Add TRIN Thrusts signals to swing trading dashboard 2024-11-14 05:50:48 -08:00
README.md
requirements.txt Add Flask-Caching dependency in order to support caching data and signal lookups server-side 2024-11-12 07:20:58 -08:00
stylesheets.py

Swing Trading Dashboard

Dependencies

The dashboard depends on the following Python packages which can be installed via pip install:

dash
dash-ag-grid
dash-bootstrap-components
dash-bootstrap-templates
pandas
plotly
python-dotenv

It also depends on the following libraries hosted here:

Running the Dashboard

The OHLC data used by the dashboard comes from IQFeed.

Assuming a connection has been established to IQFeed (via IQLink.exe, for example), create a file named .env with the following contents:

IQFEED_HOST=localhost
IQFEED_PORT=9100

Then, run the following command to launch the dashboard:

python ./dashboard.py