You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 16, 2020. It is now read-only.
I think it would be interesting to add some simple histogram data to plot the data you've processed as well as snapshots when notifications are send...
Matplotlib already has a working example to plot the stock chart, which is elaborate enough and includes Relative Strength Indicator (RSI) and Moving Average Convergence/Divergence (MACD), and is available at
@ofeka is right, please take a look at #489. But note that I have been extremely busy and will be the coming time. So I won't have a lot of time to work on this.
Note that currently this does not include graphing indicators. Though this is definitely not hard to add.
I think it would be interesting to add some simple histogram data to plot the data you've processed as well as snapshots when notifications are send...
example:
from pylab import plotfile show, gca
import matplotlib.cbook as cbook
fname = cbook.get_sample_data('amzn.csv',
asfileobj=False)
plotfile(fname, ('date', 'high', 'low', 'close'), subplots=False)
show()
Matplotlib already has a working example to plot the stock chart, which is elaborate enough and includes Relative Strength Indicator (RSI) and Moving Average Convergence/Divergence (MACD), and is available at
http://matplotlib.org/examples/pylab_examples/finance_work2.html
The coding is quick and clean, anyone else agree?
The text was updated successfully, but these errors were encountered: