Hi,
I am new to plotly and was wondering if the following is doable with the package:
- Create a candle stick natively as done in the python example below:
import plotly.plotly as py
from plotly.tools import FigureFactory as FF
from datetime import datetime
import pandas.io.data as web
df = web.DataReader("aapl", 'yahoo', datetime(2007, 10, 1), datetime(2009, 4, 1))
fig = FF.create_candlestick(df.Open, df.High, df.Low, df.Close, dates=df.index)
py.iplot(fig, filename='finance/aapl-candlestick', validate=False)
- Just like ggplot, can we extend this to plot.xts?
- Can we make the ChartSeries function from quantmod interactive with plotly?
Even if it is still not in place, was wondering if you could guide me as to how can I start developing these R charting functions within plotly?
Regards,
SD
Hi,
I am new to plotly and was wondering if the following is doable with the package:
import plotly.plotly as py
from plotly.tools import FigureFactory as FF
from datetime import datetime
import pandas.io.data as web
df = web.DataReader("aapl", 'yahoo', datetime(2007, 10, 1), datetime(2009, 4, 1))
fig = FF.create_candlestick(df.Open, df.High, df.Low, df.Close, dates=df.index)
py.iplot(fig, filename='finance/aapl-candlestick', validate=False)
Even if it is still not in place, was wondering if you could guide me as to how can I start developing these R charting functions within plotly?
Regards,
SD