Skip to main content

Customized dash/plotly chart for price candles.

Project description

What is it for?

Sometimes I need to plot something on top of candlestick prices in my jupyter notebooks. The problem with matplotlib/mplfinance or plotly is that out of the box they don't work well when the size of the data is more than 10k points. I mean that they can plot it but the inconvenience is that zoom/pan is slow.

10k points is just a week of 1 minute candles. But sometimes I wan't to explore data for a year. The solution I see is to automatically slice and resample the dataframe based on the current zoom/pan position. I haven't found a simplier way to do this than to write this small lib.

If someone knows an easier way to achive the same then please let me know by creating an issue.

This lib is far from perfect, there are known bugs, but so far it's better than nothing for me.

Features

Basically I was trying to do it similar to UX on trading view but not everything was easy to implement. So I implemented what I could/had time for.

  • zoom by scroll with right side fixed by default.
  • zoom at the cursor position via Ctrl+scroll.
  • pan by scroll via Shift+scroll.
  • current cursor position coordinates.
  • spike across all subplots (spike is vetical line at the cursor position).
  • period buttons to change resampling period.

Installation

I actually recommend to just drop the file quote_chart.py into the same folder with jupyter notebook and import via from quote_chart import create_chart_app.

But I will try to add it to PyPi.

Once imported you need to create an example of Dash app by making a call to the function create_chart_app and pass it at least one parameter - the function that will create a plotly figure for currently visisble X range that is given by x0, x1 parameters. Here is the minimal working example:

from quote_chart import create_chart_app
import plotly.express as px

def create_figure(x0, x1):
    df = px.data.stocks()
    df.set_index('date', inplace=True)
    return px.line(df['GOOG'])

app = create_chart_app(create_figure)
app.run_server()

Examples

There are 3 examples:

  • example_min.ipynb - This is the minimal example of how to use quote_chart. This example doesn't showcase rescaling/period selection that is the main feature.

  • example_random.ipynb - A better example of the use of quote_chart. It has period selection and resampling logic. But it has random data and doesn't have technical analysis charts in it.

  • example_BTCUSDT.ipynb - This is a realworld example with MACD and exponential moving average added to the chart. The only thing that I don't like in this example is that it gets data from binance and I'm not sure if it will work in future.

I hope that I will find time to put it into colab.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

quote_chart-0.1.0.tar.gz (3.3 kB view details)

Uploaded Source

Built Distribution

quote_chart-0.1.0-py3-none-any.whl (3.4 kB view details)

Uploaded Python 3

File details

Details for the file quote_chart-0.1.0.tar.gz.

File metadata

  • Download URL: quote_chart-0.1.0.tar.gz
  • Upload date:
  • Size: 3.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for quote_chart-0.1.0.tar.gz
Algorithm Hash digest
SHA256 8e848d7c0440ea2ad4e9ba639a304697cfcb99f0bc87857faa708f76457c3fc3
MD5 8d8e9a281561f4917a1ff5aebd69abef
BLAKE2b-256 60431999192e01af08149281a8dd016fd1f33e8e719f9457c981b72d9287c9e3

See more details on using hashes here.

File details

Details for the file quote_chart-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: quote_chart-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 3.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for quote_chart-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 acdbdaf9bbf1355b7cedad9ed755a9fcb939f55d007ec93d06139743f952b031
MD5 a0aa5a697f64acfb97d6587eebbb1d5e
BLAKE2b-256 2395146da2b894d7e31973209759a158824749e429a9c716165138f48dc60d09

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page