Is it possible to draw a log price chart in the chart.Posn()
or chart.Reconcile()
functions of blotter? I tried adding log.scale = TRUE
to the function call without success. Is the underlying chart_Series
function still too "experimental" to support this functionality or is the function call not correct?
chart.Posn(Portfolio = portfolio.st, Symbol = "GSPC", log.scale = TRUE)
Update: I have been trying to use the chart_Series()
function directly, setting the ylog graphical parameter:
par(ylog=TRUE)
chart_Series(Cl(GSPC))
But I receive an error "log scale needs positive bounds" despite the data being all positive.
Btw, GSPC is an OHLCV time-series xts of the S&P 500 that plots in chartSeries()
and chart_Series()
, but just not with log-scale for either charting functions.
I found this old post not as a solution but as an alternative:
I don't think there is any parameter like
log.scale
thatchart_Series
recognises. You could simply dochart_Series(log(Cl(GSPC))
. You could also do some basic modifications tochart.Posn
to put things on the log scale. Use as a starting point the source code forchart.Posn
.Here is an example of a modified function you could make. You can obviously modify it further in any way you please.
This is what the original chart looks like:
New plot, with log scales: