Exemplo n.º 1
0
 public Cointegration()
 {
     n = 3000;
     data1 = new MovingQueue<double>(n);
     data2 = new MovingQueue<double>(n);
     TEMA = new TEMA(50);
     AttachIndicator("Container", new GenericContainer(n));
 }
Exemplo n.º 2
0
        public Covariance()
        {
            n = 1000;
            data1 = new MovingQueue<double>(n);
            data2 = new MovingQueue<double>(n);
            data3 = new MovingQueue<double>(n);

            TEMA = new TEMA(50);
            AttachIndicator("Container", new GenericContainer(n));
        }