{"id":13449027,"url":"https://github.com/highfestiva/finplot","last_synced_at":"2026-01-22T19:43:05.762Z","repository":{"id":37396750,"uuid":"145775657","full_name":"highfestiva/finplot","owner":"highfestiva","description":"Performant and effortless finance plotting for Python","archived":false,"fork":false,"pushed_at":"2025-01-19T22:49:38.000Z","size":1490,"stargazers_count":991,"open_issues_count":27,"forks_count":198,"subscribers_count":38,"default_branch":"master","last_synced_at":"2025-03-21T05:45:53.265Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/highfestiva.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["highfestiva"]}},"created_at":"2018-08-22T23:56:19.000Z","updated_at":"2025-03-20T14:28:51.000Z","dependencies_parsed_at":"2023-02-18T18:16:19.905Z","dependency_job_id":"9c48048b-6222-4be8-b334-3f2df92137ae","html_url":"https://github.com/highfestiva/finplot","commit_stats":{"total_commits":315,"total_committers":6,"mean_commits":52.5,"dds":0.0444444444444444,"last_synced_commit":"8e55df891990b4e2cdec8eb384a9e53d3bac65ff"},"previous_names":[],"tags_count":32,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/highfestiva%2Ffinplot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/highfestiva%2Ffinplot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/highfestiva%2Ffinplot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/highfestiva%2Ffinplot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/highfestiva","download_url":"https://codeload.github.com/highfestiva/finplot/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245002996,"owners_count":20545533,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-07-31T06:00:28.871Z","updated_at":"2026-01-22T19:43:05.733Z","avatar_url":"https://github.com/highfestiva.png","language":"Python","readme":"# Finance Plot\n\nFinance Plotter, or finplot, is a performant library with a clean api to help you with your backtesting. It's\noptionated with good defaults, so you can start doing your work without having to setup plots, colors, scales,\nautoscaling, keybindings, handle panning+vertical zooming (which all non-finance libraries have problems with).\nAnd best of all: it can show hundreds of thousands of datapoints without batting an eye.\n\n\u003cimg src=\"https://badge.fury.io/py/finplot.svg\"/\u003e \u003cimg src=\"https://pepy.tech/badge/finplot/month\"/\u003e \u003cimg src=\"https://img.shields.io/badge/License-MIT-yellow.svg\"/\u003e\n\n\n## Features\n\n* Great performance compared to mpl_finance, plotly and Bokeh\n* Clean api\n* Works with both stocks as well as cryptocurrencies on any time resolution\n* Show as many charts as you want on the same time axis, zoom on all of them at once\n* Auto-reload position where you were looking last run\n* Overlays, fill between, value bands, symbols, labels, legend, volume profile, heatmaps, etc.\n* Can show real-time updates, including orderbook. Save screenshot.\n* Comes with a [dozen](https://github.com/highfestiva/finplot/blob/master/finplot/examples) great examples.\n\n![feature1](https://raw.githubusercontent.com/highfestiva/finplot/master/feature1.png)\n\n![feature2](https://raw.githubusercontent.com/highfestiva/finplot/master/feature2.jpg)\n\n![feature3](https://raw.githubusercontent.com/highfestiva/finplot/master/feature3.jpg)\n\n![feature3](https://raw.githubusercontent.com/highfestiva/finplot/master/feature-nuts.jpg)\n\n\n## What it is not\n\nfinplot *is not a web app*. It does not help you create an homebrew exchange. It does not work with Jupyter Labs.\n\nIt is only intended for you to do backtesting in. That is not to say that you can't create a ticker or a trade\nwidget yourself. The library is based on the eminent pyqtgraph, which is fast and flexible, so feel free to hack\naway if that's what you want.\n\n\n## Easy installation\n\n```bash\n$ pip install finplot\n```\n\n\n## Example\n\nIt's straight-forward to start using. This shows every daily candle of Apple since the 80'ies:\n\n```python\nimport finplot as fplt\nimport yfinance\n\ndf = yfinance.download('AAPL')\nfplt.candlestick_ochl(df[['Open', 'Close', 'High', 'Low']])\nfplt.show()\n```\n\nFor more examples and a bunch of snippets, see the [examples](https://github.com/highfestiva/finplot/blob/master/finplot/examples/)\ndirectory or the [wiki](https://github.com/highfestiva/finplot/wiki). There you'll find how to plot MACD, Parabolic SAR, RSI,\nvolume profile and much more.\n\n\n## Coffee\n\nFor future support and features, consider a small donation.\n\nBTC: bc1qk8m8yh86l2pz4eypflchr0tkn5aeud6cmt426m\n\nETH: 0x684d7d4C52ed428AE9a36B2407ba909D896cDB67\n","funding_links":["https://github.com/sponsors/highfestiva"],"categories":["Python：量化金融第一生态","Python","可视化"],"sub_categories":["八、数据可视化与Excel集成","Visualization"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhighfestiva%2Ffinplot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhighfestiva%2Ffinplot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhighfestiva%2Ffinplot/lists"}