Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. macdusdt <- filtusdt %>% group_by(symbol) %>% do(tail(., n = 30))
  2.  
  3. macd1m <- macdusdt %>%
  4. mutate (signals = MACD(macdusdt$lastPrice,
  5. nFast = 12, nSlow = 26, nSig = 9, maType = "EMA", percent = T))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement