Skip to content
Prev 5267 / 15274 Next

Time Series For ohlcPlot

Hi Nick,

A more flexible visualization of OHLC data is available in quantmod.

See:

http://www.quantmod.com/examples/charting/

Assuming a data.frame you can do something like:

x <- xts(table[,-1], order.by=as.POSIXct(table[,1]))

Then:

barChart(x) OR
chartSeries(x)

HTH
Jeff

On Sat, Dec 5, 2009 at 7:10 PM, Nick Torenvliet
<n_torenvliet at hotmail.com> wrote: