You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using tidyquant which loads dplyr. Unfortunately, the lag function from dplyr is masking the lag from stats. Would you consider updating your lagATR function to explicitly call stats::lag(ATR,lag)?
I currently have the following hack prior to applyIndicators:
lag <- stats::lag
applyIndicators(strategy.st, mktdata=OHLC(MSFT))
Thank you for this great package!
The text was updated successfully, but these errors were encountered:
Hi,
I am using tidyquant which loads dplyr. Unfortunately, the lag function from dplyr is masking the lag from stats. Would you consider updating your lagATR function to explicitly call stats::lag(ATR,lag)?
I currently have the following hack prior to applyIndicators:
lag <- stats::lag
applyIndicators(strategy.st, mktdata=OHLC(MSFT))
Thank you for this great package!
The text was updated successfully, but these errors were encountered: