Skip to content
Prev 394407 / 398500 Next

plot level, velocity, acceleration with one x axis

Untested but why not

a <- cbind(log(DAX), exp(diff(log(DAX))), exp(diff(diff(log(DAX)))))
colnames(a) <- c("logDAX", "vel", "accel")
plot(a)


On Tue, May 30, 2023 at 1:46?PM Spencer Graves
<spencer.graves at effectivedefense.org> wrote: