1
我想從quantmod chartSeries函數向圖中添加一個簡單的線性迴歸線。r Quantmod Chart添加線性迴歸線
Input:
getSymbols('AAPL')
chartSeries(AAPL, subset='last 3 years', TA = NULL, theme = "white", up.col = "green", dn.col = "red")
但是當我嘗試添加行,他們沒有工作
addLines(lm(Cl(AAPL)~index(AAPL)),col="blue", on=1)
abline(lm(Cl(AAPL)~index(AAPL)),col="blue")
有什麼建議?謝謝。