/** * The MIT License (MIT) * * Copyright (c) 2014-2017 Marc de Verdelhan & respective authors (see AUTHORS) * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of * the Software, and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ package eu.verdelhan.ta4j.indicators.statistics; import eu.verdelhan.ta4j.Decimal; import eu.verdelhan.ta4j.Indicator; import static eu.verdelhan.ta4j.TATestsUtils.assertDecimalEquals; import eu.verdelhan.ta4j.Tick; import eu.verdelhan.ta4j.TimeSeries; import eu.verdelhan.ta4j.indicators.simple.ClosePriceIndicator; import eu.verdelhan.ta4j.indicators.simple.VolumeIndicator; import eu.verdelhan.ta4j.mocks.MockTick; import java.util.ArrayList; import java.util.List; import static org.junit.Assert.assertTrue; import org.junit.Before; import org.junit.Test; public class CorrelationCoefficientIndicatorTest { private TimeSeries data; private Indicator<Decimal> close, volume; @Before public void setUp() { List<Tick> ticks = new ArrayList<Tick>(); // close, volume ticks.add(new MockTick(6, 100)); ticks.add(new MockTick(7, 105)); ticks.add(new MockTick(9, 130)); ticks.add(new MockTick(12, 160)); ticks.add(new MockTick(11, 150)); ticks.add(new MockTick(10, 130)); ticks.add(new MockTick(11, 95)); ticks.add(new MockTick(13, 120)); ticks.add(new MockTick(15, 180)); ticks.add(new MockTick(12, 160)); ticks.add(new MockTick(8, 150)); ticks.add(new MockTick(4, 200)); ticks.add(new MockTick(3, 150)); ticks.add(new MockTick(4, 85)); ticks.add(new MockTick(3, 70)); ticks.add(new MockTick(5, 90)); ticks.add(new MockTick(8, 100)); ticks.add(new MockTick(9, 95)); ticks.add(new MockTick(11, 110)); ticks.add(new MockTick(10, 95)); data = new TimeSeries(ticks); close = new ClosePriceIndicator(data); volume = new VolumeIndicator(data, 2); } @Test public void usingTimeFrame5UsingClosePriceAndVolume() { CorrelationCoefficientIndicator coef = new CorrelationCoefficientIndicator(close, volume, 5); assertTrue(coef.getValue(0).isNaN()); assertDecimalEquals(coef.getValue(1), 1); assertDecimalEquals(coef.getValue(2), 0.8773); assertDecimalEquals(coef.getValue(3), 0.9073); assertDecimalEquals(coef.getValue(4), 0.9219); assertDecimalEquals(coef.getValue(5), 0.9205); assertDecimalEquals(coef.getValue(6), 0.4565); assertDecimalEquals(coef.getValue(7), -0.4622); assertDecimalEquals(coef.getValue(8), 0.05747); assertDecimalEquals(coef.getValue(9), 0.1442); assertDecimalEquals(coef.getValue(10), -0.1263); assertDecimalEquals(coef.getValue(11), -0.5345); assertDecimalEquals(coef.getValue(12), -0.7275); assertDecimalEquals(coef.getValue(13), 0.1676); assertDecimalEquals(coef.getValue(14), 0.2506); assertDecimalEquals(coef.getValue(15), -0.2938); assertDecimalEquals(coef.getValue(16), -0.3586); assertDecimalEquals(coef.getValue(17), 0.1713); assertDecimalEquals(coef.getValue(18), 0.9841); assertDecimalEquals(coef.getValue(19), 0.9799); } }