Displaying 1 result from an estimated 1 matches for "myaroon".
Did you mean:
maroon
2012 Jan 11
0
Error in charToDate(x)
...;,sep=",",format="%Y-%m-%d
%R",tz="GMT",header=T))
I then set up a couple of indicators and the following model:
myATR <- function(x) ATR(HLC(x))[,'atr']
mySMI <- function(x) SMI(HLC(x))[,'SMI']
myADX <- function(x) ADX(HLC(x))[,'ADX']
myAroon <- function(x) aroon(x[,c('High','Low')])$oscillator
myBB <- function(x) BBands(HLC(x))[,'pctB']
myChaikinVol<-function(x)Delt(chaikinVolatility(x[,c("High","Low")]))[,1]
myCLV <- function(x) EMA(CLV(HLC(x)))[,1]
myMACD <- function(x) MACD(...