CAC40return.sq: Paris stock exchange square return

CAC40return.sqR Documentation

Paris stock exchange square return

Description

This data set considers CAC40 square return at the closure of the market from March 2, 1990 to June 14, 2021.

Usage

CAC40return.sq

Format

A numerical vector with 7935 observations.

We computed every value from the dataset CAC40 with the following code:

 cac<-CAC40;
 n<-length(cac);
 rend<-rep(0,n);
 rend[2:n]<-(log(cac[2:n]/cac[1:(n-1)])*100);
 CAC40return.sq<-rend[2:n]^2
 

See Also

CAC40 and CAC40return


weakARMA documentation built on April 5, 2022, 1:16 a.m.