search for: macd_hist

Displaying 1 result from an estimated 1 matches for "macd_hist".

Did you mean: macd_fast
2000 Feb 28
1
Parser Bug Somewhere.... (PR#460)
Full_Name: John P Cavanaugh Version: .99 OS: linux Submission from: (NULL) (24.116.10.99) dataset$ema12 <- EMA (dataset$Close,12) dataset$ema26 <- EMA (dataset$Close,26) dataset$MACD_fast <- dataset$ema26 - dataset$ema12 dataset$MACD_slow <- EMA(dataset$MACD_fast,9) dataset$MACD_hist <- dataset$MACD_fast - dataset$MACD_slow # This line doesnt work!!! But... if I does work if I do the following dataset$MACDfast <- dataset$ema26 - dataset$ema12 dataset$MACDslow <- EMA(dataset$MACDfast,9) dataset$MACDhist <- dataset$MACDfast - dataset$MACDslow Something seems wron...