├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── README.md ├── feature-nuts.jpg ├── feature1.png ├── feature2.jpg ├── feature3.jpg ├── finplot ├── __init__.py ├── _version.py ├── examples │ ├── analyze-2.py │ ├── analyze.py │ ├── animate.py │ ├── bfx.py │ ├── bitmex-ws.py │ ├── btc-long-term.py │ ├── bubble-table.py │ ├── complicated.py │ ├── dockable.py │ ├── embed.py │ ├── heatmap.py │ ├── line.py │ ├── overlay-correlate.py │ ├── pandas-df-plot.py │ ├── renko-dark-mode.py │ ├── requirements.txt │ ├── snp500.py │ └── volume-profile.py ├── live.py └── pdplot.py ├── nuts.xcf ├── run-all.py ├── screenshot.jpg └── setup.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [highfestiva] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | dist/ 3 | build/ 4 | dumb/ 5 | *.egg-info/ 6 | screenshot.png 7 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/README.md -------------------------------------------------------------------------------- /feature-nuts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/feature-nuts.jpg -------------------------------------------------------------------------------- /feature1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/feature1.png -------------------------------------------------------------------------------- /feature2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/feature2.jpg -------------------------------------------------------------------------------- /feature3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/feature3.jpg -------------------------------------------------------------------------------- /finplot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/__init__.py -------------------------------------------------------------------------------- /finplot/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.9.7' 2 | -------------------------------------------------------------------------------- /finplot/examples/analyze-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/examples/analyze-2.py -------------------------------------------------------------------------------- /finplot/examples/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/examples/analyze.py -------------------------------------------------------------------------------- /finplot/examples/animate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/examples/animate.py -------------------------------------------------------------------------------- /finplot/examples/bfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/examples/bfx.py -------------------------------------------------------------------------------- /finplot/examples/bitmex-ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/examples/bitmex-ws.py -------------------------------------------------------------------------------- /finplot/examples/btc-long-term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/examples/btc-long-term.py -------------------------------------------------------------------------------- /finplot/examples/bubble-table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/examples/bubble-table.py -------------------------------------------------------------------------------- /finplot/examples/complicated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/examples/complicated.py -------------------------------------------------------------------------------- /finplot/examples/dockable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/examples/dockable.py -------------------------------------------------------------------------------- /finplot/examples/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/examples/embed.py -------------------------------------------------------------------------------- /finplot/examples/heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/examples/heatmap.py -------------------------------------------------------------------------------- /finplot/examples/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/examples/line.py -------------------------------------------------------------------------------- /finplot/examples/overlay-correlate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/examples/overlay-correlate.py -------------------------------------------------------------------------------- /finplot/examples/pandas-df-plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/examples/pandas-df-plot.py -------------------------------------------------------------------------------- /finplot/examples/renko-dark-mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/examples/renko-dark-mode.py -------------------------------------------------------------------------------- /finplot/examples/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/examples/requirements.txt -------------------------------------------------------------------------------- /finplot/examples/snp500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/examples/snp500.py -------------------------------------------------------------------------------- /finplot/examples/volume-profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/examples/volume-profile.py -------------------------------------------------------------------------------- /finplot/live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/live.py -------------------------------------------------------------------------------- /finplot/pdplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/finplot/pdplot.py -------------------------------------------------------------------------------- /nuts.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/nuts.xcf -------------------------------------------------------------------------------- /run-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/run-all.py -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/screenshot.jpg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highfestiva/finplot/HEAD/setup.py --------------------------------------------------------------------------------