How to calculate correlation and covariance matrix between columns of a TimeArray

I think you need:

using Statistics
cov(values(ta))
cor(values(ta))
1 Like