From 02cccffaf30931ffe7fe29e761fe969dc8c0bef6 Mon Sep 17 00:00:00 2001 From: David Pang Date: Thu, 19 Sep 2024 13:32:56 -0400 Subject: [PATCH 1/2] mass find and replaced woodstox header --- .../java/org/ta4j/core/AnalysisCriterion.java | 15 +-- .../java/org/ta4j/core/BacktestExecutor.java | 15 +-- .../src/main/java/org/ta4j/core/Bar.java | 15 +-- .../main/java/org/ta4j/core/BarSeries.java | 125 +++++++++--------- .../java/org/ta4j/core/BarSeriesBuilder.java | 15 +-- .../java/org/ta4j/core/BarSeriesManager.java | 15 +-- .../java/org/ta4j/core/BaseBarBuilder.java | 15 +-- .../java/org/ta4j/core/BaseBarSeries.java | 103 +++++++-------- .../org/ta4j/core/BaseBarSeriesBuilder.java | 25 +--- .../main/java/org/ta4j/core/BaseStrategy.java | 15 +-- .../java/org/ta4j/core/BaseTradingRecord.java | 15 +-- .../ta4j/core/ConvertibleBaseBarBuilder.java | 15 +-- .../main/java/org/ta4j/core/Indicator.java | 8 +- .../src/main/java/org/ta4j/core/Position.java | 15 +-- .../src/main/java/org/ta4j/core/Rule.java | 15 +-- .../src/main/java/org/ta4j/core/Strategy.java | 15 +-- .../src/main/java/org/ta4j/core/Trade.java | 15 +-- .../java/org/ta4j/core/TradingRecord.java | 15 +-- .../ta4j/core/aggregator/BarAggregator.java | 15 +-- .../core/aggregator/BarSeriesAggregator.java | 15 +-- .../aggregator/BaseBarSeriesAggregator.java | 15 +-- .../aggregator/DurationBarAggregator.java | 15 +-- .../java/org/ta4j/core/analysis/CashFlow.java | 15 +-- .../java/org/ta4j/core/analysis/Returns.java | 15 +-- .../ta4j/core/analysis/cost/CostModel.java | 15 +-- .../cost/FixedTransactionCostModel.java | 15 +-- .../cost/LinearBorrowingCostModel.java | 15 +-- .../cost/LinearTransactionCostModel.java | 15 +-- .../core/analysis/cost/ZeroCostModel.java | 15 +-- .../org/ta4j/core/analysis/package-info.java | 15 +-- .../criteria/AbstractAnalysisCriterion.java | 15 +-- .../criteria/AverageLossStreakCriterion.java | 15 +-- .../AverageReturnPerBarCriterion.java | 15 +-- .../criteria/AverageWinStreakCriterion.java | 15 +-- .../criteria/EnterAndHoldReturnCriterion.java | 15 +-- .../core/criteria/ExpectancyCriterion.java | 15 +-- .../criteria/ExpectedShortfallCriterion.java | 15 +-- .../LinearTransactionCostCriterion.java | 15 +-- .../LosingPositionsRatioCriterion.java | 15 +-- .../criteria/MaximumDrawdownCriterion.java | 15 +-- .../core/criteria/NumberOfBarsCriterion.java | 15 +-- .../NumberOfBreakEvenPositionsCriterion.java | 15 +-- ...NumberOfConsecutivePositionsCriterion.java | 15 +-- .../NumberOfLosingPositionsCriterion.java | 15 +-- .../criteria/NumberOfPositionsCriterion.java | 15 +-- .../NumberOfWinningPositionsCriterion.java | 15 +-- .../ReturnOverMaxDrawdownCriterion.java | 15 +-- .../org/ta4j/core/criteria/SqnCriterion.java | 15 +-- .../core/criteria/TotalProfitCriterion.java | 15 +-- .../core/criteria/ValueAtRiskCriterion.java | 15 +-- .../criteria/VersusBuyAndHoldCriterion.java | 15 +-- .../WinningPositionsRatioCriterion.java | 15 +-- .../criteria/helpers/AverageCriterion.java | 15 +-- .../RelativeStandardDeviationCriterion.java | 15 +-- .../helpers/StandardDeviationCriterion.java | 15 +-- .../helpers/StandardErrorCriterion.java | 15 +-- .../criteria/helpers/VarianceCriterion.java | 15 +-- .../org/ta4j/core/criteria/package-info.java | 15 +-- .../criteria/pnl/AverageLossCriterion.java | 15 +-- .../criteria/pnl/AverageProfitCriterion.java | 15 +-- .../core/criteria/pnl/GrossLossCriterion.java | 15 +-- .../criteria/pnl/GrossProfitCriterion.java | 15 +-- .../criteria/pnl/GrossReturnCriterion.java | 15 +-- .../core/criteria/pnl/NetLossCriterion.java | 15 +-- .../core/criteria/pnl/NetProfitCriterion.java | 15 +-- .../pnl/ProfitLossPercentageCriterion.java | 15 +-- .../pnl/ProfitLossRatioCriterion.java | 15 +-- .../ATRDistanceFromMAIndicator.java | 15 +-- .../ta4j/core/indicators/ATRIndicator.java | 15 +-- .../core/indicators/AbstractEMAIndicator.java | 15 +-- .../AccelerationDecelerationIndicator.java | 15 +-- .../AwesomeOscillatorIndicator.java | 15 +-- .../ta4j/core/indicators/CCIIndicator.java | 15 +-- .../ta4j/core/indicators/CMOIndicator.java | 15 +-- .../ta4j/core/indicators/CachedIndicator.java | 15 +-- .../ChandelierExitLongIndicator.java | 15 +-- .../ChandelierExitShortIndicator.java | 15 +-- .../ta4j/core/indicators/ChopIndicator.java | 15 +-- .../indicators/CoppockCurveIndicator.java | 15 +-- .../ta4j/core/indicators/DPOIndicator.java | 15 +-- .../indicators/DistanceFromMAIndicator.java | 15 +-- .../DistanceFromMAPercentageIndicator.java | 15 +-- .../core/indicators/DoubleEMAIndicator.java | 15 +-- .../ta4j/core/indicators/EMAIndicator.java | 15 +-- .../ta4j/core/indicators/FisherIndicator.java | 15 +-- .../ta4j/core/indicators/HMAIndicator.java | 15 +-- .../ta4j/core/indicators/KAMAIndicator.java | 15 +-- .../ta4j/core/indicators/KSTIndicator.java | 15 +-- .../ta4j/core/indicators/LWMAIndicator.java | 15 +-- .../ta4j/core/indicators/MACDIndicator.java | 15 +-- .../ta4j/core/indicators/MMAIndicator.java | 15 +-- .../core/indicators/MassIndexIndicator.java | 15 +-- .../ta4j/core/indicators/PPOIndicator.java | 15 +-- .../ta4j/core/indicators/PVOIndicator.java | 15 +-- .../indicators/ParabolicSarIndicator.java | 15 +-- .../ta4j/core/indicators/RAVIIndicator.java | 15 +-- .../core/indicators/RWIHighIndicator.java | 15 +-- .../ta4j/core/indicators/RWILowIndicator.java | 15 +-- .../indicators/RecursiveCachedIndicator.java | 15 +-- .../ta4j/core/indicators/SMAIndicator.java | 2 +- .../StochasticOscillatorDIndicator.java | 15 +-- .../StochasticOscillatorKIndicator.java | 15 +-- .../indicators/StochasticRSIIndicator.java | 15 +-- .../ta4j/core/indicators/TRIXIndicator.java | 15 +-- .../core/indicators/TripleEMAIndicator.java | 15 +-- .../core/indicators/UlcerIndexIndicator.java | 15 +-- .../ta4j/core/indicators/WMAIndicator.java | 15 +-- .../core/indicators/WilliamsRIndicator.java | 15 +-- .../ta4j/core/indicators/ZLEMAIndicator.java | 15 +-- .../ta4j/core/indicators/ZigZagIndicator.java | 15 +-- .../core/indicators/adx/ADXIndicator.java | 15 +-- .../ta4j/core/indicators/adx/DXIndicator.java | 15 +-- .../core/indicators/adx/MinusDIIndicator.java | 15 +-- .../core/indicators/adx/MinusDMIndicator.java | 15 +-- .../core/indicators/adx/PlusDIIndicator.java | 15 +-- .../core/indicators/adx/PlusDMIndicator.java | 15 +-- .../core/indicators/adx/package-info.java | 15 +-- .../indicators/aroon/AroonDownIndicator.java | 15 +-- .../core/indicators/aroon/AroonFacade.java | 15 +-- .../aroon/AroonOscillatorIndicator.java | 15 +-- .../indicators/aroon/AroonUpIndicator.java | 15 +-- .../bollinger/BollingerBandFacade.java | 15 +-- .../BollingerBandWidthIndicator.java | 15 +-- .../BollingerBandsLowerIndicator.java | 15 +-- .../BollingerBandsMiddleIndicator.java | 15 +-- .../BollingerBandsUpperIndicator.java | 15 +-- .../bollinger/PercentBIndicator.java | 15 +-- .../indicators/bollinger/package-info.java | 15 +-- .../candles/BearishCandleIndicator.java | 15 +-- .../candles/BearishCandleStreakIndicator.java | 15 +-- .../candles/BearishEngulfingIndicator.java | 15 +-- .../candles/BearishHaramiIndicator.java | 15 +-- .../candles/BullishCandleIndicator.java | 15 +-- .../candles/BullishCandleStreakIndicator.java | 15 +-- .../candles/BullishEngulfingIndicator.java | 15 +-- .../candles/BullishHaramiIndicator.java | 15 +-- .../indicators/candles/DojiIndicator.java | 15 +-- .../candles/LowerShadowIndicator.java | 15 +-- .../indicators/candles/RealBodyIndicator.java | 15 +-- .../candles/ThreeBlackCrowsIndicator.java | 15 +-- .../candles/ThreeWhiteSoldiersIndicator.java | 15 +-- .../candles/UpperShadowIndicator.java | 15 +-- .../core/indicators/candles/package-info.java | 15 +-- .../DonchianChannelLowerIndicator.java | 15 +-- .../DonchianChannelMiddleIndicator.java | 15 +-- .../DonchianChannelUpperIndicator.java | 15 +-- .../indicators/helpers/AmountIndicator.java | 15 +-- .../helpers/ArithmeticGrowthIndicator.java | 15 +-- .../helpers/BarPriceRangeIndicator.java | 15 +-- .../helpers/BooleanTransformIndicator.java | 15 +-- .../helpers/CloseLocationValueIndicator.java | 15 +-- .../helpers/ClosePriceIndicator.java | 15 +-- .../indicators/helpers/CombineIndicator.java | 15 +-- .../ConsecutiveBooleanStreakIndicator.java | 15 +-- .../indicators/helpers/ConstantIndicator.java | 15 +-- .../indicators/helpers/CrossIndicator.java | 15 +-- .../indicators/helpers/DateTimeIndicator.java | 15 +-- .../helpers/DifferenceIndicator.java | 15 +-- .../DifferencePercentageIndicator.java | 15 +-- .../helpers/FixedBooleanIndicator.java | 15 +-- .../helpers/FixedDecimalIndicator.java | 15 +-- .../indicators/helpers/FixedIndicator.java | 15 +-- .../indicators/helpers/GainIndicator.java | 15 +-- .../helpers/HighPriceIndicator.java | 15 +-- .../helpers/HighestValueIndicator.java | 15 +-- .../indicators/helpers/LossIndicator.java | 15 +-- .../indicators/helpers/LowPriceIndicator.java | 15 +-- .../helpers/MaxCompareIndicator.java | 15 +-- .../helpers/MedianPriceIndicator.java | 15 +-- .../helpers/MinCompareIndicator.java | 15 +-- .../helpers/MultiplierIndicator.java | 15 +-- .../helpers/PreviousValueIndicator.java | 15 +-- .../helpers/PriceVariationIndicator.java | 15 +-- .../core/indicators/helpers/SumIndicator.java | 15 +-- .../core/indicators/helpers/TRIndicator.java | 15 +-- .../helpers/TradeCountIndicator.java | 15 +-- .../helpers/TransformIndicator.java | 15 +-- .../helpers/TypicalPriceIndicator.java | 15 +-- .../indicators/helpers/UnstableIndicator.java | 15 +-- .../indicators/helpers/VolumeIndicator.java | 15 +-- .../core/indicators/helpers/package-info.java | 15 +-- .../ichimoku/IchimokuChikouSpanIndicator.java | 15 +-- .../ichimoku/IchimokuKijunSenIndicator.java | 15 +-- .../ichimoku/IchimokuLineIndicator.java | 15 +-- .../IchimokuSenkouSpanAIndicator.java | 15 +-- .../IchimokuSenkouSpanBIndicator.java | 15 +-- .../ichimoku/IchimokuTenkanSenIndicator.java | 15 +-- .../indicators/ichimoku/package-info.java | 15 +-- .../keltner/KeltnerChannelFacade.java | 15 +-- .../keltner/KeltnerChannelLowerIndicator.java | 15 +-- .../KeltnerChannelMiddleIndicator.java | 15 +-- .../keltner/KeltnerChannelUpperIndicator.java | 15 +-- .../core/indicators/keltner/package-info.java | 15 +-- .../indicators/numeric/BinaryOperation.java | 15 +-- .../indicators/numeric/NumericIndicator.java | 15 +-- .../indicators/numeric/UnaryOperation.java | 15 +-- .../ta4j/core/indicators/package-info.java | 15 +-- .../DeMarkPivotPointIndicator.java | 15 +-- .../pivotpoints/DeMarkReversalIndicator.java | 15 +-- .../FibonacciReversalIndicator.java | 15 +-- .../indicators/pivotpoints/PivotLevel.java | 15 +-- .../pivotpoints/PivotPointIndicator.java | 15 +-- .../StandardReversalIndicator.java | 15 +-- .../indicators/pivotpoints/TimeLevel.java | 15 +-- .../indicators/pivotpoints/package-info.java | 15 +-- .../CorrelationCoefficientIndicator.java | 15 +-- .../statistics/CovarianceIndicator.java | 15 +-- .../statistics/MeanDeviationIndicator.java | 15 +-- .../PearsonCorrelationIndicator.java | 15 +-- .../PeriodicalGrowthRateIndicator.java | 15 +-- .../indicators/statistics/SigmaIndicator.java | 15 +-- .../SimpleLinearRegressionIndicator.java | 15 +-- .../StandardDeviationIndicator.java | 15 +-- .../statistics/StandardErrorIndicator.java | 15 +-- .../statistics/VarianceIndicator.java | 15 +-- .../indicators/statistics/package-info.java | 15 +-- .../AccumulationDistributionIndicator.java | 15 +-- .../volume/ChaikinMoneyFlowIndicator.java | 15 +-- .../volume/ChaikinOscillatorIndicator.java | 15 +-- .../core/indicators/volume/IIIIndicator.java | 15 +-- .../indicators/volume/MVWAPIndicator.java | 15 +-- .../core/indicators/volume/NVIIndicator.java | 15 +-- .../volume/OnBalanceVolumeIndicator.java | 15 +-- .../core/indicators/volume/PVIIndicator.java | 15 +-- .../core/indicators/volume/ROCVIndicator.java | 15 +-- .../core/indicators/volume/VWAPIndicator.java | 15 +-- .../core/indicators/volume/package-info.java | 15 +-- .../vortex/MinusVITrendLineIndicator.java | 15 +-- .../indicators/vortex/MinusVMIndicator.java | 15 +-- .../vortex/PlusVITrendLineIndicator.java | 15 +-- .../indicators/vortex/PlusVMIndicator.java | 15 +-- .../core/indicators/vortex/VortexFacade.java | 15 +-- .../java/org/ta4j/core/num/DecimalNum.java | 15 +-- .../src/main/java/org/ta4j/core/num/NaN.java | 15 +-- .../src/main/java/org/ta4j/core/num/Num.java | 15 +-- .../java/org/ta4j/core/num/package-info.java | 15 +-- .../main/java/org/ta4j/core/package-info.java | 15 +-- .../ta4j/core/reports/PerformanceReport.java | 15 +-- .../reports/PerformanceReportGenerator.java | 15 +-- .../core/reports/PositionStatsReport.java | 15 +-- .../reports/PositionStatsReportGenerator.java | 15 +-- .../ta4j/core/reports/ReportGenerator.java | 15 +-- .../ta4j/core/reports/TradingStatement.java | 15 +-- .../reports/TradingStatementGenerator.java | 15 +-- .../org/ta4j/core/reports/package-info.java | 15 +-- .../org/ta4j/core/rules/ATRStopGainRule.java | 15 +-- .../core/rules/AbsoluteValueOverRule.java | 15 +-- .../core/rules/AbsoluteValueUnderRule.java | 15 +-- .../org/ta4j/core/rules/AbstractRule.java | 15 +-- .../java/org/ta4j/core/rules/AndRule.java | 15 +-- .../ta4j/core/rules/BooleanIndicatorRule.java | 15 +-- .../java/org/ta4j/core/rules/BooleanRule.java | 15 +-- .../java/org/ta4j/core/rules/ChainRule.java | 15 +-- .../core/rules/CrossedDownIndicatorRule.java | 15 +-- .../core/rules/CrossedUpIndicatorRule.java | 15 +-- .../org/ta4j/core/rules/DayOfWeekRule.java | 15 +-- .../ta4j/core/rules/DollarStopGainRule.java | 15 +-- .../ta4j/core/rules/DollarStopLossRule.java | 15 +-- .../java/org/ta4j/core/rules/FixedRule.java | 15 +-- .../org/ta4j/core/rules/FlipFlopRule.java | 15 +-- .../java/org/ta4j/core/rules/InPipeRule.java | 15 +-- .../java/org/ta4j/core/rules/InSlopeRule.java | 15 +-- .../java/org/ta4j/core/rules/IsEqualRule.java | 15 +-- .../org/ta4j/core/rules/IsFallingRule.java | 15 +-- .../org/ta4j/core/rules/IsHighestRule.java | 15 +-- .../org/ta4j/core/rules/IsLowestRule.java | 15 +-- .../org/ta4j/core/rules/JustOnceRule.java | 15 +-- .../org/ta4j/core/rules/ModulusIndexRule.java | 15 +-- .../java/org/ta4j/core/rules/NotRule.java | 15 +-- .../OpenedPositionMinimumBarCountRule.java | 15 +-- ...PositionMinimumProfitableBarCountRule.java | 15 +-- .../main/java/org/ta4j/core/rules/OrRule.java | 15 +-- .../ta4j/core/rules/OverIndicatorRule.java | 15 +-- .../rules/PercentageOverLastBuyPriceRule.java | 15 +-- .../ta4j/core/rules/PercentageOverRule.java | 15 +-- .../PercentageUnderLastBuyPriceRule.java | 15 +-- .../ta4j/core/rules/PercentageUnderRule.java | 15 +-- .../org/ta4j/core/rules/StopGainRule.java | 15 +-- .../org/ta4j/core/rules/StopLossRule.java | 15 +-- .../org/ta4j/core/rules/TimeRangeRule.java | 15 +-- .../ta4j/core/rules/TrailingStopGainRule.java | 15 +-- .../ta4j/core/rules/TrailingStopLossRule.java | 15 +-- .../ta4j/core/rules/UnderIndicatorRule.java | 15 +-- .../java/org/ta4j/core/rules/WaitForRule.java | 15 +-- .../java/org/ta4j/core/rules/XorRule.java | 15 +-- .../org/ta4j/core/rules/helper/ChainLink.java | 15 +-- .../org/ta4j/core/rules/package-info.java | 15 +-- .../org/ta4j/core/utils/BarSeriesUtils.java | 2 +- .../org/ta4j/core/BarSeriesManagerTest.java | 15 +-- .../src/test/java/org/ta4j/core/BarTest.java | 15 +-- .../org/ta4j/core/BaseBarBuilderTest.java | 15 +-- .../core/ConvertibleBaseBarBuilderTest.java | 15 +-- .../java/org/ta4j/core/CriterionFactory.java | 15 +-- .../org/ta4j/core/ExternalCriterionTest.java | 15 +-- .../org/ta4j/core/ExternalIndicatorTest.java | 15 +-- .../java/org/ta4j/core/IndicatorFactory.java | 15 +-- .../java/org/ta4j/core/IndicatorTest.java | 15 +-- .../test/java/org/ta4j/core/PositionTest.java | 15 +-- .../java/org/ta4j/core/SeriesBuilderTest.java | 15 +-- .../test/java/org/ta4j/core/TestUtils.java | 15 +-- .../java/org/ta4j/core/TestUtilsTest.java | 15 +-- .../test/java/org/ta4j/core/TradeTest.java | 15 +-- .../java/org/ta4j/core/TradingRecordTest.java | 15 +-- .../java/org/ta4j/core/XlsTestsUtils.java | 15 +-- .../BaseBarSeriesAggregatorTest.java | 15 +-- .../aggregator/DurationBarAggregatorTest.java | 15 +-- .../org/ta4j/core/analysis/CashFlowTest.java | 15 +-- .../org/ta4j/core/analysis/ReturnsTest.java | 15 +-- .../cost/FixedTransactionCostModelTest.java | 15 +-- .../cost/LinearBorrowingCostModelTest.java | 15 +-- .../cost/LinearTransactionCostModelTest.java | 15 +-- .../core/analysis/cost/ZeroCostModelTest.java | 15 +-- .../AbstractAnalysisCriterionTest.java | 15 +-- .../core/criteria/AbstractCriterionTest.java | 15 +-- .../AverageLossStreakCriterionTest.java | 15 +-- .../AverageReturnPerBarCriterionTest.java | 15 +-- .../AverageWinStreakCriterionTest.java | 15 +-- .../EnterAndHoldReturnCriterionTest.java | 15 +-- .../criteria/ExpectancyCriterionTest.java | 15 +-- .../ExpectedShortfallCriterionTest.java | 15 +-- .../LinearTransactionCostCriterionTest.java | 15 +-- .../LosingPositionsRatioCriterionTest.java | 15 +-- .../MaximumDrawdownCriterionTest.java | 15 +-- .../criteria/NumberOfBarsCriterionTest.java | 15 +-- ...mberOfBreakEvenPositionsCriterionTest.java | 15 +-- ...erOfConsecutivePositionsCriterionTest.java | 15 +-- .../NumberOfLosingPositionsCriterionTest.java | 15 +-- .../NumberOfPositionsCriterionTest.java | 15 +-- ...NumberOfWinningPositionsCriterionTest.java | 15 +-- .../core/criteria/OpenedPositionUtils.java | 15 +-- .../ReturnOverMaxDrawdownCriterionTest.java | 15 +-- .../ta4j/core/criteria/SqnCriterionTest.java | 15 +-- .../criteria/TotalProfitCriterionTest.java | 15 +-- .../criteria/ValueAtRiskCriterionTest.java | 15 +-- .../VersusBuyAndHoldCriterionTest.java | 15 +-- .../WinningPositionsRatioCriterionTest.java | 15 +-- .../ta4j/core/criteria/XLSCriterionTest.java | 15 +-- .../helpers/AverageCriterionTest.java | 15 +-- ...elativeStandardDeviationCriterionTest.java | 15 +-- .../StandardDeviationCriterionTest.java | 15 +-- .../helpers/StandardErrorCriterionTest.java | 15 +-- .../helpers/VarianceCriterionTest.java | 15 +-- .../pnl/AverageLossCriterionTest.java | 15 +-- .../pnl/AverageProfitCriterionTest.java | 15 +-- .../criteria/pnl/GrossLossCriterionTest.java | 15 +-- .../pnl/GrossProfitCriterionTest.java | 15 +-- .../pnl/GrossReturnCriterionTest.java | 15 +-- .../criteria/pnl/NetLossCriterionTest.java | 15 +-- .../criteria/pnl/NetProfitCriterionTest.java | 15 +-- .../criteria/pnl/ProfitLossCriterionTest.java | 15 +-- .../ProfitLossPercentageCriterionTest.java | 15 +-- .../pnl/ProfitLossRatioCriterionTest.java | 15 +-- .../core/indicators/ATRIndicatorTest.java | 15 +-- .../indicators/AbstractIndicatorTest.java | 15 +-- ...AccelerationDecelerationIndicatorTest.java | 15 +-- .../ArithmeticGrowthIndicatorTest.java | 15 +-- .../AwesomeOscillatorIndicatorTest.java | 15 +-- .../core/indicators/CCIIndicatorTest.java | 15 +-- .../core/indicators/CMOIndicatorTest.java | 15 +-- .../core/indicators/CachedIndicatorTest.java | 15 +-- .../ChandelierExitLongIndicatorTest.java | 15 +-- .../ChandelierExitShortIndicatorTest.java | 15 +-- .../core/indicators/ChopIndicatorTest.java | 15 +-- .../indicators/CoppockCurveIndicatorTest.java | 15 +-- .../core/indicators/DPOIndicatorTest.java | 15 +-- ...DistanceFromMAPercentageIndicatorTest.java | 15 +-- .../indicators/DoubleEMAIndicatorTest.java | 15 +-- .../core/indicators/EMAIndicatorTest.java | 15 +-- .../core/indicators/FisherIndicatorTest.java | 15 +-- .../core/indicators/HMAIndicatorTest.java | 15 +-- .../core/indicators/KAMAIndicatorTest.java | 15 +-- .../core/indicators/KSTIndicatorTest.java | 15 +-- .../core/indicators/LWMAIndicatorTest.java | 15 +-- .../core/indicators/MACDIndicatorTest.java | 15 +-- .../core/indicators/MMAIndicatorTest.java | 15 +-- .../indicators/MassIndexIndicatorTest.java | 15 +-- .../core/indicators/PPOIndicatorTest.java | 15 +-- .../core/indicators/PVOIndicatorTest.java | 15 +-- .../indicators/ParabolicSarIndicatorTest.java | 15 +-- .../core/indicators/RAVIIndicatorTest.java | 15 +-- .../core/indicators/ROCIndicatorTest.java | 15 +-- .../core/indicators/RWIHighIndicatorTest.java | 15 +-- .../core/indicators/RWILowIndicatorTest.java | 15 +-- .../StochasticOscillatorDIndicatorTest.java | 15 +-- .../StochasticOscillatorKIndicatorTest.java | 15 +-- .../StochasticRSIIndicatorTest.java | 15 +-- .../core/indicators/TRIXIndicatorTest.java | 15 +-- .../indicators/TripleEMAIndicatorTest.java | 15 +-- .../indicators/UlcerIndexIndicatorTest.java | 15 +-- .../core/indicators/WMAIndicatorTest.java | 15 +-- .../indicators/WilliamsRIndicatorTest.java | 15 +-- .../core/indicators/XLSIndicatorTest.java | 15 +-- .../core/indicators/ZLEMAIndicatorTest.java | 15 +-- .../core/indicators/ZigZagIndicatorTest.java | 15 +-- .../core/indicators/adx/ADXIndicatorTest.java | 15 +-- .../indicators/adx/MinusDIIndicatorTest.java | 15 +-- .../indicators/adx/MinusDMIndicatorTest.java | 15 +-- .../indicators/adx/PlusDIIndicatorTest.java | 15 +-- .../indicators/adx/PlusDMIndicatorTest.java | 15 +-- .../aroon/AroonDownIndicatorTest.java | 15 +-- .../indicators/aroon/AroonFacadeTest.java | 15 +-- .../aroon/AroonOscillatorIndicatorTest.java | 15 +-- .../aroon/AroonUpIndicatorTest.java | 15 +-- .../bollinger/BollingerBandFacadeTest.java | 15 +-- .../BollingerBandWidthIndicatorTest.java | 15 +-- .../BollingerBandsLowerIndicatorTest.java | 15 +-- .../BollingerBandsMiddleIndicatorTest.java | 15 +-- .../BollingerBandsUpperIndicatorTest.java | 15 +-- .../bollinger/PercentBIndicatorTest.java | 15 +-- .../BearishCandleStreakIndicatorTest.java | 15 +-- .../BearishEngulfingIndicatorTest.java | 15 +-- .../candles/BearishHaramiIndicatorTest.java | 15 +-- .../BullishCandleStreakIndicatorTest.java | 15 +-- .../BullishEngulfingIndicatorTest.java | 15 +-- .../candles/BullishHaramiIndicatorTest.java | 15 +-- .../indicators/candles/DojiIndicatorTest.java | 15 +-- .../candles/LowerShadowIndicatorTest.java | 15 +-- .../candles/RealBodyIndicatorTest.java | 15 +-- .../candles/ThreeBlackCrowsIndicatorTest.java | 15 +-- .../ThreeWhiteSoldiersIndicatorTest.java | 15 +-- .../candles/UpperShadowIndicatorTest.java | 15 +-- .../DonchianChannelLowerIndicatorTest.java | 15 +-- .../DonchianChannelMiddleIndicatorTest.java | 15 +-- .../DonchianChannelUpperIndicatorTest.java | 15 +-- .../helpers/AmountIndicatorTest.java | 15 +-- .../helpers/BarPriceRangeIndicatorTest.java | 15 +-- .../BooleanTransformIndicatorTest.java | 15 +-- .../CloseLocationValueIndicatorTest.java | 15 +-- .../helpers/ClosePriceIndicatorTest.java | 15 +-- .../helpers/CombineIndicatorTest.java | 15 +-- ...ConsecutiveBooleanStreakIndicatorTest.java | 15 +-- .../helpers/ConstantIndicatorTest.java | 15 +-- .../ConvergenceDivergenceIndicatorTest.java | 15 +-- .../helpers/CumulativeSumIndicatorTest.java | 15 +-- .../helpers/DateTimeIndicatorTest.java | 15 +-- .../DifferencePercentageIndicatorTest.java | 15 +-- .../helpers/FixedIndicatorTest.java | 15 +-- .../indicators/helpers/GainIndicatorTest.java | 15 +-- .../helpers/HighPriceIndicatorTest.java | 15 +-- .../helpers/HighestValueIndicatorTest.java | 15 +-- .../indicators/helpers/LossIndicatorTest.java | 15 +-- .../helpers/LowPriceIndicatorTest.java | 15 +-- .../helpers/LowestValueIndicatorTest.java | 15 +-- .../helpers/MaxCompareIndicatorTest.java | 15 +-- .../helpers/MedianPriceIndicatorTest.java | 15 +-- .../helpers/MinCompareIndicatorTest.java | 15 +-- .../helpers/OpenPriceIndicatorTest.java | 15 +-- .../helpers/PreviousValueIndicatorTest.java | 15 +-- .../helpers/PriceVariationIndicatorTest.java | 15 +-- .../indicators/helpers/SumIndicatorTest.java | 15 +-- .../indicators/helpers/TRIndicatorTest.java | 15 +-- .../helpers/TradeCountIndicatorTest.java | 15 +-- .../helpers/TransformIndicatorTest.java | 15 +-- .../helpers/TypicalPriceIndicatorTest.java | 15 +-- .../helpers/UnstableIndicatorTest.java | 15 +-- .../helpers/VolumeIndicatorTest.java | 15 +-- .../IchimokuChikouSpanIndicatorTest.java | 15 +-- .../ichimoku/IchimokuIndicatorTest.java | 15 +-- .../keltner/KeltnerChannelFacadeTest.java | 15 +-- .../KeltnerChannelLowerIndicatorTest.java | 15 +-- .../KeltnerChannelMiddleIndicatorTest.java | 15 +-- .../KeltnerChannelUpperIndicatorTest.java | 15 +-- .../numeric/NumericIndicatorTest.java | 15 +-- .../pivotpoints/PivotPointIndicatorTest.java | 15 +-- .../CorrelationCoefficientIndicatorTest.java | 15 +-- .../statistics/CovarianceIndicatorTest.java | 15 +-- .../MeanDeviationIndicatorTest.java | 15 +-- .../PearsonCorrelationIndicatorTest.java | 15 +-- .../PeriodicalGrowthRateIndicatorTest.java | 15 +-- .../statistics/SigmaIndicatorTest.java | 15 +-- .../SimpleLinearRegressionIndicatorTest.java | 15 +-- .../StandardDeviationIndicatorTest.java | 15 +-- .../StandardErrorIndicatorTest.java | 15 +-- .../statistics/VarianceIndicatorTest.java | 15 +-- ...AccumulationDistributionIndicatorTest.java | 15 +-- .../volume/ChaikinMoneyFlowIndicatorTest.java | 15 +-- .../ChaikinOscillatorIndicatorTest.java | 15 +-- .../indicators/volume/IIIIndicatorTest.java | 15 +-- .../indicators/volume/MVWAPIndicatorTest.java | 15 +-- .../indicators/volume/NVIIndicatorTest.java | 15 +-- .../volume/OnBalanceVolumeIndicatorTest.java | 15 +-- .../indicators/volume/PVIIndicatorTest.java | 15 +-- .../indicators/volume/ROCVIndicatorTest.java | 15 +-- .../indicators/volume/VWAPIndicatorTest.java | 15 +-- .../vortex/MinusVITrendLineIndicatorTest.java | 15 +-- .../vortex/MinusVMIndicatorTest.java | 15 +-- .../vortex/PlusVITrendLineIndicatorTest.java | 15 +-- .../vortex/PlusVMIndicatorTest.java | 15 +-- .../core/mocks/MockAnalysisCriterion.java | 15 +-- .../org/ta4j/core/mocks/MockBarSeries.java | 15 +-- .../org/ta4j/core/mocks/MockIndicator.java | 15 +-- .../ta4j/core/mocks/MockTradingRecord.java | 15 +-- .../org/ta4j/core/num/DecimalNumTest.java | 15 +-- .../java/org/ta4j/core/num/DoubleNumTest.java | 15 +-- .../ta4j/core/rules/ATRStopGainRuleTest.java | 15 +-- .../core/rules/AbsoluteValueOverRuleTest.java | 15 +-- .../rules/AbsoluteValueUnderRuleTest.java | 15 +-- .../java/org/ta4j/core/rules/AndRuleTest.java | 15 +-- .../core/rules/BooleanIndicatorRuleTest.java | 15 +-- .../org/ta4j/core/rules/BooleanRuleTest.java | 15 +-- .../org/ta4j/core/rules/ChainRuleTest.java | 15 +-- .../rules/CrossedDownIndicatorRuleTest.java | 15 +-- .../rules/CrossedUpIndicatorRuleTest.java | 15 +-- .../ta4j/core/rules/DayOfWeekRuleTest.java | 15 +-- .../core/rules/DollarStopGainRuleTest.java | 15 +-- .../core/rules/DollarStopLossRuleTest.java | 15 +-- .../org/ta4j/core/rules/FixedRuleTest.java | 15 +-- .../org/ta4j/core/rules/FlipFlopRuleTest.java | 15 +-- .../org/ta4j/core/rules/InPipeRuleTest.java | 15 +-- .../org/ta4j/core/rules/InSlopeRuleTest.java | 15 +-- .../org/ta4j/core/rules/IsEqualRuleTest.java | 15 +-- .../ta4j/core/rules/IsFallingRuleTest.java | 15 +-- .../ta4j/core/rules/IsHighestRuleTest.java | 15 +-- .../org/ta4j/core/rules/IsLowestRuleTest.java | 15 +-- .../org/ta4j/core/rules/IsRisingRuleTest.java | 15 +-- .../org/ta4j/core/rules/JustOnceRuleTest.java | 15 +-- .../ta4j/core/rules/ModulusIndexRuleTest.java | 15 +-- .../java/org/ta4j/core/rules/NotRuleTest.java | 15 +-- ...OpenedPositionMinimumBarCountRuleTest.java | 15 +-- ...tionMinimumProfitableBarCountRuleTest.java | 15 +-- .../java/org/ta4j/core/rules/OrRuleTest.java | 15 +-- .../core/rules/OverIndicatorRuleTest.java | 15 +-- .../PercentageOverLastBuyPriceRuleTest.java | 15 +-- .../core/rules/PercentageOverRuleTest.java | 15 +-- .../PercentageUnderLastBuyPriceRuleTest.java | 15 +-- .../core/rules/PercentageUnderRuleTest.java | 15 +-- .../org/ta4j/core/rules/StopGainRuleTest.java | 15 +-- .../org/ta4j/core/rules/StopLossRuleTest.java | 15 +-- .../ta4j/core/rules/TimeRangeRuleTest.java | 15 +-- .../core/rules/TrailingStopGainRuleTest.java | 15 +-- .../core/rules/TrailingStopLossRuleTest.java | 15 +-- .../core/rules/UnderIndicatorRuleTest.java | 15 +-- .../org/ta4j/core/rules/WaitForRuleTest.java | 15 +-- .../java/org/ta4j/core/rules/XorRuleTest.java | 15 +-- .../ta4j/core/utils/BarSeriesUtilsTest.java | 3 +- 535 files changed, 651 insertions(+), 7537 deletions(-) diff --git a/ta4j-core/src/main/java/org/ta4j/core/AnalysisCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/AnalysisCriterion.java index bcfd40c1..b872f6ea 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/AnalysisCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/AnalysisCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import java.util.List; diff --git a/ta4j-core/src/main/java/org/ta4j/core/BacktestExecutor.java b/ta4j-core/src/main/java/org/ta4j/core/BacktestExecutor.java index e560931d..0f6c1eff 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/BacktestExecutor.java +++ b/ta4j-core/src/main/java/org/ta4j/core/BacktestExecutor.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import java.util.Collections; diff --git a/ta4j-core/src/main/java/org/ta4j/core/Bar.java b/ta4j-core/src/main/java/org/ta4j/core/Bar.java index b16595ee..e3bb74a5 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/Bar.java +++ b/ta4j-core/src/main/java/org/ta4j/core/Bar.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import java.io.Serializable; diff --git a/ta4j-core/src/main/java/org/ta4j/core/BarSeries.java b/ta4j-core/src/main/java/org/ta4j/core/BarSeries.java index 6a596b7a..df0117d1 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/BarSeries.java +++ b/ta4j-core/src/main/java/org/ta4j/core/BarSeries.java @@ -53,32 +53,28 @@ public interface BarSeries extends Serializable { String getName(); /** - * * - * The base currency identifier used in the series + * * The base currency identifier used in the series * * @return */ public String getBaseCurrency(); /** - * * - * the counter currency identifier used in the series + * * the counter currency identifier used in the series * * @return */ public String getCounterCurrency(); /** - * * - * The time period of the series + * * The time period of the series * * @return */ public Duration getTimePeriod(); /** - * * - * the base and counter currency identifiers return as a single string + * * the base and counter currency identifiers return as a single string * * @return */ @@ -125,10 +121,10 @@ default boolean isEmpty() { /** * Warning: should be used carefully! * - * Returns the raw bar data. It means that it returns the current List - * object used internally to store the {@link Bar bars}. It may be: - a - * shortened bar list if a maximum bar count has been set - an extended bar - * list if it is a constrained bar series + * Returns the raw bar data. It means that it returns the current List object + * used internally to store the {@link Bar bars}. It may be: - a shortened bar + * list if a maximum bar count has been set - an extended bar list if it is a + * constrained bar series * * @return the raw bar data */ @@ -145,8 +141,8 @@ default boolean isEmpty() { int getEndIndex(); /** - * @return the description of the series period (e.g. "from 12:00 21/01/2014 - * to 12:15 21/01/2014") + * @return the description of the series period (e.g. "from 12:00 21/01/2014 to + * 12:15 21/01/2014") */ default String getSeriesPeriodDescription() { StringBuilder sb = new StringBuilder(); @@ -168,10 +164,9 @@ default String getSeriesPeriodDescription() { /** * Sets the maximum number of bars that will be retained in the series. * - * If a new bar is added to the series such that the number of bars will - * exceed the maximum bar count, then the FIRST bar in the series is - * automatically removed, ensuring that the maximum bar count is not - * exceeded. + * If a new bar is added to the series such that the number of bars will exceed + * the maximum bar count, then the FIRST bar in the series is automatically + * removed, ensuring that the maximum bar count is not exceeded. * * @param maximumBarCount the maximum bar count */ @@ -186,13 +181,13 @@ default String getSeriesPeriodDescription() { * Adds a bar at the end of the series. * * Begin index set to 0 if it wasn't initialized.
- * End index set to 0 if it wasn't initialized, or incremented if it matches - * the end of the series.
+ * End index set to 0 if it wasn't initialized, or incremented if it matches the + * end of the series.
* Exceeding bars are removed. * * @param bar the bar to be added - * @apiNote use #addBar(Duration, ZonedDateTime, Num, Num, Num, Num, Num) to - * add bar data directly + * @apiNote use #addBar(Duration, ZonedDateTime, Num, Num, Num, Num, Num) to add + * bar data directly * @see BarSeries#setMaximumBarCount(int) */ default void addBar(Bar bar) { @@ -203,15 +198,16 @@ default void addBar(Bar bar) { * Adds a bar at the end of the series. * * Begin index set to 0 if it wasn't initialized.
- * End index set to 0 if it wasn't initialized, or incremented if it matches - * the end of the series.
+ * End index set to 0 if it wasn't initialized, or incremented if it matches the + * end of the series.
* Exceeding bars are removed. * - * @param bar the bar to be added + * @param bar the bar to be added * @param replace true to replace the latest bar. Some exchange provide - * continuous new bar data in the time period. (eg. 1s in 1m Duration)
- * @apiNote use #addBar(Duration, ZonedDateTime, Num, Num, Num, Num, Num) to - * add bar data directly + * continuous new bar data in the time period. (eg. 1s in 1m + * Duration)
+ * @apiNote use #addBar(Duration, ZonedDateTime, Num, Num, Num, Num, Num) to add + * bar data directly * @see BarSeries#setMaximumBarCount(int) */ void addBar(Bar bar, boolean replace); @@ -220,7 +216,7 @@ default void addBar(Bar bar) { * Adds a bar at the end of the series. * * @param timePeriod the {@link Duration} of this bar - * @param endTime the {@link ZonedDateTime end time} of this bar + * @param endTime the {@link ZonedDateTime end time} of this bar */ void addBar(Duration timePeriod, ZonedDateTime endTime); @@ -278,13 +274,13 @@ default void addBar(ZonedDateTime endTime, Num openPrice, Num highPrice, Num low /** * Adds a new Bar to the bar series. * - * @param endTime end time of the bar - * @param openPrice the open price - * @param highPrice the high/max price - * @param lowPrice the low/min price + * @param endTime end time of the bar + * @param openPrice the open price + * @param highPrice the high/max price + * @param lowPrice the low/min price * @param closePrice the last/close price - * @param volume the volume (default zero) - * @param amount the amount (default zero) + * @param volume the volume (default zero) + * @param amount the amount (default zero) */ void addBar(ZonedDateTime endTime, Num openPrice, Num highPrice, Num lowPrice, Num closePrice, Num volume, Num amount); @@ -292,12 +288,12 @@ void addBar(ZonedDateTime endTime, Num openPrice, Num highPrice, Num lowPrice, N /** * Adds a new Bar to the bar series. * - * @param endTime end time of the bar - * @param openPrice the open price - * @param highPrice the high/max price - * @param lowPrice the low/min price + * @param endTime end time of the bar + * @param openPrice the open price + * @param highPrice the high/max price + * @param lowPrice the low/min price * @param closePrice the last/close price - * @param volume the volume (default zero) + * @param volume the volume (default zero) */ void addBar(Duration timePeriod, ZonedDateTime endTime, Num openPrice, Num highPrice, Num lowPrice, Num closePrice, Num volume); @@ -306,13 +302,13 @@ void addBar(Duration timePeriod, ZonedDateTime endTime, Num openPrice, Num highP * Adds a new Bar to the bar series. * * @param timePeriod the time period of the bar - * @param endTime end time of the bar - * @param openPrice the open price - * @param highPrice the high/max price - * @param lowPrice the low/min price + * @param endTime end time of the bar + * @param openPrice the open price + * @param highPrice the high/max price + * @param lowPrice the low/min price * @param closePrice the last/close price - * @param volume the volume (default zero) - * @param amount the amount (default zero) + * @param volume the volume (default zero) + * @param amount the amount (default zero) */ void addBar(Duration timePeriod, ZonedDateTime endTime, Num openPrice, Num highPrice, Num lowPrice, Num closePrice, Num volume, Num amount); @@ -321,7 +317,7 @@ void addBar(Duration timePeriod, ZonedDateTime endTime, Num openPrice, Num highP * Adds a trade at the end of bar period. * * @param tradeVolume the traded volume - * @param tradePrice the price + * @param tradePrice the price */ default void addTrade(Number tradeVolume, Number tradePrice) { addTrade(numOf(tradeVolume), numOf(tradePrice)); @@ -331,7 +327,7 @@ default void addTrade(Number tradeVolume, Number tradePrice) { * Adds a trade at the end of bar period. * * @param tradeVolume the traded volume - * @param tradePrice the price + * @param tradePrice the price */ default void addTrade(String tradeVolume, String tradePrice) { addTrade(numOf(new BigDecimal(tradeVolume)), numOf(new BigDecimal(tradePrice))); @@ -341,13 +337,12 @@ default void addTrade(String tradeVolume, String tradePrice) { * Adds a trade at the end of bar period. * * @param tradeVolume the traded volume - * @param tradePrice the price + * @param tradePrice the price */ void addTrade(Num tradeVolume, Num tradePrice); /** - * * - * Adds a trade at the end of bar period. + * * Adds a trade at the end of bar period. * * @param trade */ @@ -369,28 +364,26 @@ default void addPrice(Number price) { } /** - * Returns a new {@link BarSeries} instance that is a subset of this - * BarSeries instance. It holds a copy of all {@link Bar bars} between - * startIndex - * (inclusive) and endIndex (exclusive) of this BarSeries. The - * indices of this BarSeries and the new subset BarSeries can be different. - * I. e. index 0 of the new BarSeries will be index startIndex of - * this BarSeries. If startIndex < this.seriesBeginIndex the new - * BarSeries will start with the first available Bar of this BarSeries. If - * endIndex > this.seriesEndIndex the new BarSeries will end at the - * last available Bar of this BarSeries + * Returns a new {@link BarSeries} instance that is a subset of this BarSeries + * instance. It holds a copy of all {@link Bar bars} between startIndex + * (inclusive) and endIndex (exclusive) of this BarSeries. The indices + * of this BarSeries and the new subset BarSeries can be different. I. e. index + * 0 of the new BarSeries will be index startIndex of this BarSeries. + * If startIndex < this.seriesBeginIndex the new BarSeries will start + * with the first available Bar of this BarSeries. If endIndex > + * this.seriesEndIndex the new BarSeries will end at the last available Bar of + * this BarSeries * * @param startIndex the startIndex (inclusive) - * @param endIndex the endIndex (exclusive) + * @param endIndex the endIndex (exclusive) * @return a new BarSeries with Bars from startIndex to endIndex-1 - * @throws IllegalArgumentException if endIndex <= startIndex or startIndex - * < 0 + * @throws IllegalArgumentException if endIndex <= startIndex or startIndex < 0 */ BarSeries getSubSeries(int startIndex, int endIndex); /** - * Transforms a {@link Number} into the {@link Num implementation} used by - * this bar series + * Transforms a {@link Number} into the {@link Num implementation} used by this + * bar series * * @param number a {@link Number} implementing object. * @return the corresponding value as a Num implementing object diff --git a/ta4j-core/src/main/java/org/ta4j/core/BarSeriesBuilder.java b/ta4j-core/src/main/java/org/ta4j/core/BarSeriesBuilder.java index bae2d378..d0b0ce4c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/BarSeriesBuilder.java +++ b/ta4j-core/src/main/java/org/ta4j/core/BarSeriesBuilder.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; /** diff --git a/ta4j-core/src/main/java/org/ta4j/core/BarSeriesManager.java b/ta4j-core/src/main/java/org/ta4j/core/BarSeriesManager.java index a15ec307..af1af09d 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/BarSeriesManager.java +++ b/ta4j-core/src/main/java/org/ta4j/core/BarSeriesManager.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import org.slf4j.Logger; diff --git a/ta4j-core/src/main/java/org/ta4j/core/BaseBarBuilder.java b/ta4j-core/src/main/java/org/ta4j/core/BaseBarBuilder.java index f6c7a54b..85a033ab 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/BaseBarBuilder.java +++ b/ta4j-core/src/main/java/org/ta4j/core/BaseBarBuilder.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import java.time.Duration; diff --git a/ta4j-core/src/main/java/org/ta4j/core/BaseBarSeries.java b/ta4j-core/src/main/java/org/ta4j/core/BaseBarSeries.java index 1197de91..428df008 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/BaseBarSeries.java +++ b/ta4j-core/src/main/java/org/ta4j/core/BaseBarSeries.java @@ -98,8 +98,8 @@ public class BaseBarSeries implements BarSeries { */ private int removedBarsCount = 0; /** - * True if the current series is constrained (i.e. its indexes cannot - * change), false otherwise + * True if the current series is constrained (i.e. its indexes cannot change), + * false otherwise */ private boolean constrained; @@ -129,8 +129,7 @@ public BaseBarSeries(List bars) { } /** - * * - * Constructor of an unnamed series. + * * Constructor of an unnamed series. * * @param bars */ @@ -141,10 +140,10 @@ public BaseBarSeries(Bar... bars) { /** * Constructor. * - * @param name the name of the series + * @param name the name of the series * @param baseCurrency * @param counterCurrency - * @param bars the list of bars of the series + * @param bars the list of bars of the series */ public BaseBarSeries(String name, String baseCurrency, String counterCurrency, List bars) { this(name, baseCurrency, counterCurrency, bars, 0, bars.size() - 1, false); @@ -153,11 +152,12 @@ public BaseBarSeries(String name, String baseCurrency, String counterCurrency, L /** * Constructor. * - * @param name the name of the bar series + * @param name the name of the bar series * @param baseCurrency * @param counterCurrency - * @param num any instance of Num to determine its Num function; with this, - * we can convert a {@link Number} to a {@link Num Num implementation} + * @param num any instance of Num to determine its Num function; + * with this, we can convert a {@link Number} to a + * {@link Num Num implementation} */ public BaseBarSeries(String name, String baseCurrency, String counterCurrency, Num num) { this(name, baseCurrency, counterCurrency, new ArrayList<>(), num); @@ -166,12 +166,13 @@ public BaseBarSeries(String name, String baseCurrency, String counterCurrency, N /** * Constructor. * - * @param name the name of the bar series + * @param name the name of the bar series * @param baseCurrency * @param counterCurrency - * @param bars the list of bars of the bar series - * @param num any instance of Num to determine its Num function; with this, - * we can convert a {@link Number} to a {@link Num Num implementation} + * @param bars the list of bars of the bar series + * @param num any instance of Num to determine its Num function; + * with this, we can convert a {@link Number} to a + * {@link Num Num implementation} */ public BaseBarSeries(String name, String baseCurrency, String counterCurrency, List bars, Num num) { this(name, baseCurrency, counterCurrency, bars, 0, bars.size() - 1, false, num); @@ -200,20 +201,19 @@ public BaseBarSeries(String name, Num num) { /** * Constructor. *

- * Creates a BaseBarSeries with default {@link DecimalNum} as type for the - * data and all operations on it + * Creates a BaseBarSeries with default {@link DecimalNum} as type for the data + * and all operations on it * - * @param name the name of the series - * @param bars the list of bars of the series + * @param name the name of the series + * @param bars the list of bars of the series * @param seriesBeginIndex the begin index (inclusive) of the bar series - * @param seriesEndIndex the end index (inclusive) of the bar series - * @param constrained true to constrain the bar series (i.e. indexes cannot - * change), false otherwise + * @param seriesEndIndex the end index (inclusive) of the bar series + * @param constrained true to constrain the bar series (i.e. indexes cannot + * change), false otherwise */ private BaseBarSeries(String name, String baseCurrency, String counterCurrency, List bars, int seriesBeginIndex, int seriesEndIndex, boolean constrained) { - this(name, baseCurrency, counterCurrency, bars, seriesBeginIndex, seriesEndIndex, constrained, - DecimalNum.ZERO); + this(name, baseCurrency, counterCurrency, bars, seriesBeginIndex, seriesEndIndex, constrained, DecimalNum.ZERO); } /** @@ -225,7 +225,7 @@ public BaseBarSeries(Double... closePrices) { this(Arrays.asList(closePrices) .stream() .map(closePrice -> new BaseBar(Duration.ZERO, ZonedDateTime.now(), NaN, NaN, NaN, - DoubleNum.valueOf(closePrice), NaN, NaN)) + DoubleNum.valueOf(closePrice), NaN, NaN)) .collect(Collectors.toList())); } @@ -242,23 +242,25 @@ public BaseBarSeries(String name, String baseCurrency, String counterCurrency, I Arrays.asList(closePrices) .stream() .map(closePrice -> new BaseBar(Duration.ZERO, ZonedDateTime.now(), NaN, NaN, NaN, - DoubleNum.valueOf(closePrice), NaN, NaN)) + DoubleNum.valueOf(closePrice), NaN, NaN)) .collect(Collectors.toList())); } /** * Constructor. * - * @param name the name of the bar series - * @param bars the list of bars of the bar series + * @param name the name of the bar series + * @param bars the list of bars of the bar series * @param seriesBeginIndex the begin index (inclusive) of the bar series - * @param seriesEndIndex the end index (inclusive) of the bar series - * @param constrained true to constrain the bar series (i.e. indexes cannot - * change), false otherwise - * @param num any instance of Num to determine its Num function; with this, - * we can convert a {@link Number} to a {@link Num Num implementation} - */ - BaseBarSeries(String name, String baseCurrency, String counterCurrency, List bars, int seriesBeginIndex, int seriesEndIndex, boolean constrained, Num num) { + * @param seriesEndIndex the end index (inclusive) of the bar series + * @param constrained true to constrain the bar series (i.e. indexes cannot + * change), false otherwise + * @param num any instance of Num to determine its Num function; + * with this, we can convert a {@link Number} to a + * {@link Num Num implementation} + */ + BaseBarSeries(String name, String baseCurrency, String counterCurrency, List bars, int seriesBeginIndex, + int seriesEndIndex, boolean constrained, Num num) { this.name = name; this.baseCurrency = baseCurrency; this.counterCurrency = counterCurrency; @@ -295,11 +297,11 @@ public BaseBarSeries(String name, String baseCurrency, String counterCurrency, I /** * Cuts a list of bars into a new list of bars that is a subset of it * - * @param bars the list of {@link Bar bars} + * @param bars the list of {@link Bar bars} * @param startIndex start index of the subset - * @param endIndex end index of the subset - * @return a new list of bars with tick from startIndex (inclusive) to - * endIndex (exclusive) + * @param endIndex end index of the subset + * @return a new list of bars with tick from startIndex (inclusive) to endIndex + * (exclusive) */ private static List cut(List bars, final int startIndex, final int endIndex) { return new ArrayList<>(bars.subList(startIndex, endIndex)); @@ -307,7 +309,7 @@ private static List cut(List bars, final int startIndex, final int end /** * @param series a bar series - * @param index an out of bounds bar index + * @param index an out of bounds bar index * @return a message for an OutOfBoundsException */ private static String buildOutOfBoundsMessage(BaseBarSeries series, int index) { @@ -316,23 +318,21 @@ private static String buildOutOfBoundsMessage(BaseBarSeries series, int index) { } /** - * Returns a new BaseBarSeries that is a subset of this BaseBarSeries. The - * new series holds a copy of all {@link Bar bars} between - * startIndex + * Returns a new BaseBarSeries that is a subset of this BaseBarSeries. The new + * series holds a copy of all {@link Bar bars} between startIndex * (inclusive) and endIndex (exclusive) of this BaseBarSeries. The * indices of this BaseBarSeries and the new subset BaseBarSeries can be * different. I. e. index 0 of the new BaseBarSeries will be index * startIndex of this BaseBarSeries. If startIndex < * this.seriesBeginIndex the new BaseBarSeries will start with the first * available Bar of this BaseBarSeries. If endIndex > - * this.seriesEndIndex+1 the new BaseBarSeries will end at the last - * available Bar of this BaseBarSeries + * this.seriesEndIndex+1 the new BaseBarSeries will end at the last available + * Bar of this BaseBarSeries * * @param startIndex the startIndex (inclusive) - * @param endIndex the endIndex (exclusive) + * @param endIndex the endIndex (exclusive) * @return a new BarSeries with Bars from startIndex to endIndex-1 - * @throws IllegalArgumentException if endIndex <= startIndex or startIndex - * < 0 + * @throws IllegalArgumentException if endIndex <= startIndex or startIndex < 0 */ @Override public BaseBarSeries getSubSeries(int startIndex, int endIndex) { @@ -358,8 +358,8 @@ public Num numOf(Number number) { } /** - * Checks if all {@link Bar bars} of a list fits to the - * {@link Num NumFunction} used by this bar series. + * Checks if all {@link Bar bars} of a list fits to the {@link Num NumFunction} + * used by this bar series. * * @param bars a List of Bar objects. * @return false if a Num implementation of at least one Bar does not fit. @@ -378,8 +378,7 @@ private boolean checkBars(List bars) { * NumFunction used by bar series. * * @param bar a Bar object. - * @return false if another Num implementation is used than by this bar - * series. + * @return false if another Num implementation is used than by this bar series. * @see Num * @see Bar * @see #addBar(Duration, ZonedDateTime) @@ -488,8 +487,8 @@ public int getRemovedBarsCount() { /** * @param bar the Bar to be added - * @apiNote to add bar data directly use #addBar(Duration, ZonedDateTime, - * Num, Num, Num, Num, Num) + * @apiNote to add bar data directly use #addBar(Duration, ZonedDateTime, Num, + * Num, Num, Num, Num) */ @Override public void addBar(Bar bar, boolean replace) { diff --git a/ta4j-core/src/main/java/org/ta4j/core/BaseBarSeriesBuilder.java b/ta4j-core/src/main/java/org/ta4j/core/BaseBarSeriesBuilder.java index 5e47b083..e14add62 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/BaseBarSeriesBuilder.java +++ b/ta4j-core/src/main/java/org/ta4j/core/BaseBarSeriesBuilder.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import java.util.ArrayList; @@ -64,17 +51,17 @@ public BaseBarSeriesBuilder() { } /** - * @param defaultNum any instance of Num to be used as default to determine - * its Num function; with this, we can convert a {@link Number} to a - * {@link Num Num implementation} + * @param defaultNum any instance of Num to be used as default to determine its + * Num function; with this, we can convert a {@link Number} to + * a {@link Num Num implementation} */ public static void setDefaultNum(Num defaultNum) { BaseBarSeriesBuilder.defaultNum = defaultNum; } /** - * @param defaultFunction a Num function to be used as default; with this, - * we can convert a {@link Number} to a {@link Num Num + * @param defaultFunction a Num function to be used as default; with this, we + * can convert a {@link Number} to a {@link Num Num * implementation} */ public static void setDefaultNum(Function defaultFunction) { diff --git a/ta4j-core/src/main/java/org/ta4j/core/BaseStrategy.java b/ta4j-core/src/main/java/org/ta4j/core/BaseStrategy.java index 2fb4f357..2cb9714e 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/BaseStrategy.java +++ b/ta4j-core/src/main/java/org/ta4j/core/BaseStrategy.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import org.slf4j.Logger; diff --git a/ta4j-core/src/main/java/org/ta4j/core/BaseTradingRecord.java b/ta4j-core/src/main/java/org/ta4j/core/BaseTradingRecord.java index 528bff07..4b123038 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/BaseTradingRecord.java +++ b/ta4j-core/src/main/java/org/ta4j/core/BaseTradingRecord.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import java.time.ZonedDateTime; diff --git a/ta4j-core/src/main/java/org/ta4j/core/ConvertibleBaseBarBuilder.java b/ta4j-core/src/main/java/org/ta4j/core/ConvertibleBaseBarBuilder.java index 544f059e..926a9723 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/ConvertibleBaseBarBuilder.java +++ b/ta4j-core/src/main/java/org/ta4j/core/ConvertibleBaseBarBuilder.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import java.time.Duration; diff --git a/ta4j-core/src/main/java/org/ta4j/core/Indicator.java b/ta4j-core/src/main/java/org/ta4j/core/Indicator.java index 986dbe11..8a2256be 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/Indicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/Indicator.java @@ -61,11 +61,11 @@ default Num zero() { /** * Returns all values from an {@link Indicator} as an array of Doubles. The - * returned doubles could have a minor loss of precise, if {@link Indicator} - * was based on {@link Num Num}. + * returned doubles could have a minor loss of precise, if {@link Indicator} was + * based on {@link Num Num}. * - * @param ref the indicator - * @param index the index + * @param ref the indicator + * @param index the index * @param barCount the barCount * @return array of Doubles within the barCount */ diff --git a/ta4j-core/src/main/java/org/ta4j/core/Position.java b/ta4j-core/src/main/java/org/ta4j/core/Position.java index e9bc8192..34ca9fad 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/Position.java +++ b/ta4j-core/src/main/java/org/ta4j/core/Position.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import static org.ta4j.core.num.NaN.NaN; diff --git a/ta4j-core/src/main/java/org/ta4j/core/Rule.java b/ta4j-core/src/main/java/org/ta4j/core/Rule.java index 189775d6..c349f58d 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/Rule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/Rule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import org.ta4j.core.rules.AndRule; diff --git a/ta4j-core/src/main/java/org/ta4j/core/Strategy.java b/ta4j-core/src/main/java/org/ta4j/core/Strategy.java index 3d54baa1..50406e6d 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/Strategy.java +++ b/ta4j-core/src/main/java/org/ta4j/core/Strategy.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; /** diff --git a/ta4j-core/src/main/java/org/ta4j/core/Trade.java b/ta4j-core/src/main/java/org/ta4j/core/Trade.java index ead7bffc..853e8796 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/Trade.java +++ b/ta4j-core/src/main/java/org/ta4j/core/Trade.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import java.io.Serializable; diff --git a/ta4j-core/src/main/java/org/ta4j/core/TradingRecord.java b/ta4j-core/src/main/java/org/ta4j/core/TradingRecord.java index 03c3fbd2..ab31b507 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/TradingRecord.java +++ b/ta4j-core/src/main/java/org/ta4j/core/TradingRecord.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import java.io.Serializable; diff --git a/ta4j-core/src/main/java/org/ta4j/core/aggregator/BarAggregator.java b/ta4j-core/src/main/java/org/ta4j/core/aggregator/BarAggregator.java index acb2ce76..30da674b 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/aggregator/BarAggregator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/aggregator/BarAggregator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.aggregator; import java.util.List; diff --git a/ta4j-core/src/main/java/org/ta4j/core/aggregator/BarSeriesAggregator.java b/ta4j-core/src/main/java/org/ta4j/core/aggregator/BarSeriesAggregator.java index acb0eeb0..748c3ece 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/aggregator/BarSeriesAggregator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/aggregator/BarSeriesAggregator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.aggregator; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/aggregator/BaseBarSeriesAggregator.java b/ta4j-core/src/main/java/org/ta4j/core/aggregator/BaseBarSeriesAggregator.java index 668a8917..b29385d7 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/aggregator/BaseBarSeriesAggregator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/aggregator/BaseBarSeriesAggregator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.aggregator; import java.util.List; diff --git a/ta4j-core/src/main/java/org/ta4j/core/aggregator/DurationBarAggregator.java b/ta4j-core/src/main/java/org/ta4j/core/aggregator/DurationBarAggregator.java index 1a15e738..128d1419 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/aggregator/DurationBarAggregator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/aggregator/DurationBarAggregator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.aggregator; import java.time.Duration; diff --git a/ta4j-core/src/main/java/org/ta4j/core/analysis/CashFlow.java b/ta4j-core/src/main/java/org/ta4j/core/analysis/CashFlow.java index 349e1f6e..7cbc2af7 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/analysis/CashFlow.java +++ b/ta4j-core/src/main/java/org/ta4j/core/analysis/CashFlow.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.analysis; import java.util.ArrayList; diff --git a/ta4j-core/src/main/java/org/ta4j/core/analysis/Returns.java b/ta4j-core/src/main/java/org/ta4j/core/analysis/Returns.java index 526d2e9f..8fb64520 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/analysis/Returns.java +++ b/ta4j-core/src/main/java/org/ta4j/core/analysis/Returns.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.analysis; import java.util.ArrayList; diff --git a/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/CostModel.java b/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/CostModel.java index 60d038f8..140b4e4d 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/CostModel.java +++ b/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/CostModel.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.analysis.cost; import java.io.Serializable; diff --git a/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/FixedTransactionCostModel.java b/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/FixedTransactionCostModel.java index b6c2e955..e780822f 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/FixedTransactionCostModel.java +++ b/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/FixedTransactionCostModel.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.analysis.cost; import org.ta4j.core.Position; diff --git a/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/LinearBorrowingCostModel.java b/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/LinearBorrowingCostModel.java index 0a5e2734..a2dd6d0d 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/LinearBorrowingCostModel.java +++ b/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/LinearBorrowingCostModel.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.analysis.cost; import org.ta4j.core.Position; diff --git a/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/LinearTransactionCostModel.java b/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/LinearTransactionCostModel.java index 50fd6333..7cb3088e 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/LinearTransactionCostModel.java +++ b/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/LinearTransactionCostModel.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.analysis.cost; import org.ta4j.core.Position; diff --git a/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/ZeroCostModel.java b/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/ZeroCostModel.java index 450296c5..ae1d216a 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/ZeroCostModel.java +++ b/ta4j-core/src/main/java/org/ta4j/core/analysis/cost/ZeroCostModel.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.analysis.cost; public class ZeroCostModel extends FixedTransactionCostModel { diff --git a/ta4j-core/src/main/java/org/ta4j/core/analysis/package-info.java b/ta4j-core/src/main/java/org/ta4j/core/analysis/package-info.java index d45ad46f..94cbfa7b 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/analysis/package-info.java +++ b/ta4j-core/src/main/java/org/ta4j/core/analysis/package-info.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /** * Analysis. * diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/AbstractAnalysisCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/AbstractAnalysisCriterion.java index 8ccc5fb5..a61e7873 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/AbstractAnalysisCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/AbstractAnalysisCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import org.ta4j.core.AnalysisCriterion; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/AverageLossStreakCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/AverageLossStreakCriterion.java index 9912fa21..504341dd 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/AverageLossStreakCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/AverageLossStreakCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import java.util.ArrayList; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/AverageReturnPerBarCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/AverageReturnPerBarCriterion.java index 327b8a15..83926271 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/AverageReturnPerBarCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/AverageReturnPerBarCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/AverageWinStreakCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/AverageWinStreakCriterion.java index 9cdaf172..ea3266df 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/AverageWinStreakCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/AverageWinStreakCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import java.util.ArrayList; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/EnterAndHoldReturnCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/EnterAndHoldReturnCriterion.java index 31e0339f..abe60ae6 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/EnterAndHoldReturnCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/EnterAndHoldReturnCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/ExpectancyCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/ExpectancyCriterion.java index cbf7d731..48aef239 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/ExpectancyCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/ExpectancyCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/ExpectedShortfallCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/ExpectedShortfallCriterion.java index 70294c1e..21d8244a 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/ExpectedShortfallCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/ExpectedShortfallCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import java.util.Collections; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/LinearTransactionCostCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/LinearTransactionCostCriterion.java index 6902c0f3..f2dd0498 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/LinearTransactionCostCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/LinearTransactionCostCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/LosingPositionsRatioCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/LosingPositionsRatioCriterion.java index 35b09bbf..8f37ac27 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/LosingPositionsRatioCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/LosingPositionsRatioCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/MaximumDrawdownCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/MaximumDrawdownCriterion.java index d8341ac3..906891e5 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/MaximumDrawdownCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/MaximumDrawdownCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfBarsCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfBarsCriterion.java index f165bbf5..44381c92 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfBarsCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfBarsCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfBreakEvenPositionsCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfBreakEvenPositionsCriterion.java index bbeecf3b..adb15fd7 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfBreakEvenPositionsCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfBreakEvenPositionsCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfConsecutivePositionsCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfConsecutivePositionsCriterion.java index 0be00036..30e4204c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfConsecutivePositionsCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfConsecutivePositionsCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfLosingPositionsCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfLosingPositionsCriterion.java index 78e54fc3..1313171b 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfLosingPositionsCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfLosingPositionsCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfPositionsCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfPositionsCriterion.java index 0575ac12..a98a27b4 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfPositionsCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfPositionsCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfWinningPositionsCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfWinningPositionsCriterion.java index f926a807..82cf9132 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfWinningPositionsCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/NumberOfWinningPositionsCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/ReturnOverMaxDrawdownCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/ReturnOverMaxDrawdownCriterion.java index 3978ccc4..a8594482 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/ReturnOverMaxDrawdownCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/ReturnOverMaxDrawdownCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import org.ta4j.core.AnalysisCriterion; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/SqnCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/SqnCriterion.java index 3ba05d65..5c56bf38 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/SqnCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/SqnCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import org.ta4j.core.AnalysisCriterion; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/TotalProfitCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/TotalProfitCriterion.java index 78500257..fa3d6ff6 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/TotalProfitCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/TotalProfitCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/ValueAtRiskCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/ValueAtRiskCriterion.java index e93cf758..2a793001 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/ValueAtRiskCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/ValueAtRiskCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import java.util.Collections; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/VersusBuyAndHoldCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/VersusBuyAndHoldCriterion.java index c526d9ed..351e1d9d 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/VersusBuyAndHoldCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/VersusBuyAndHoldCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import org.ta4j.core.AnalysisCriterion; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/WinningPositionsRatioCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/WinningPositionsRatioCriterion.java index c0247294..d9bb2378 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/WinningPositionsRatioCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/WinningPositionsRatioCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/AverageCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/AverageCriterion.java index 97fb4dd7..898f56f1 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/AverageCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/AverageCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.helpers; import org.ta4j.core.AnalysisCriterion; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/RelativeStandardDeviationCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/RelativeStandardDeviationCriterion.java index 677d4e61..c7cfcedd 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/RelativeStandardDeviationCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/RelativeStandardDeviationCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.helpers; import org.ta4j.core.AnalysisCriterion; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/StandardDeviationCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/StandardDeviationCriterion.java index e9ed7071..08ff04cc 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/StandardDeviationCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/StandardDeviationCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.helpers; import org.ta4j.core.AnalysisCriterion; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/StandardErrorCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/StandardErrorCriterion.java index 084130d8..89be92d6 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/StandardErrorCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/StandardErrorCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.helpers; import org.ta4j.core.AnalysisCriterion; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/VarianceCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/VarianceCriterion.java index 1f6c14bf..e2c2eb6d 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/VarianceCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/helpers/VarianceCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.helpers; import org.ta4j.core.AnalysisCriterion; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/package-info.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/package-info.java index cf380022..6c0c1570 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/package-info.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/package-info.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /** * Analysis criteria. * diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/AverageLossCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/AverageLossCriterion.java index cb3b5e02..4ff0b68d 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/AverageLossCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/AverageLossCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/AverageProfitCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/AverageProfitCriterion.java index 8e760e09..3e9bf25c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/AverageProfitCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/AverageProfitCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/GrossLossCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/GrossLossCriterion.java index 750d6ad4..e03830ea 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/GrossLossCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/GrossLossCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/GrossProfitCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/GrossProfitCriterion.java index 4df3e0c9..67177239 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/GrossProfitCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/GrossProfitCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/GrossReturnCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/GrossReturnCriterion.java index fc369b31..638dca43 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/GrossReturnCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/GrossReturnCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/NetLossCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/NetLossCriterion.java index 8f5b3ab8..0b9a0b2c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/NetLossCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/NetLossCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/NetProfitCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/NetProfitCriterion.java index a9150637..78afb747 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/NetProfitCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/NetProfitCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/ProfitLossPercentageCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/ProfitLossPercentageCriterion.java index 21eab322..257b68c2 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/ProfitLossPercentageCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/ProfitLossPercentageCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/ProfitLossRatioCriterion.java b/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/ProfitLossRatioCriterion.java index 163a6d02..cf174679 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/ProfitLossRatioCriterion.java +++ b/ta4j-core/src/main/java/org/ta4j/core/criteria/pnl/ProfitLossRatioCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/ATRDistanceFromMAIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/ATRDistanceFromMAIndicator.java index 22dc893a..25734d21 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/ATRDistanceFromMAIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/ATRDistanceFromMAIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/ATRIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/ATRIndicator.java index 5b32a838..0342ebfa 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/ATRIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/ATRIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/AbstractEMAIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/AbstractEMAIndicator.java index 56150ffe..2a022612 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/AbstractEMAIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/AbstractEMAIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/AccelerationDecelerationIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/AccelerationDecelerationIndicator.java index f45b2a2e..2f62c26d 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/AccelerationDecelerationIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/AccelerationDecelerationIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/AwesomeOscillatorIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/AwesomeOscillatorIndicator.java index db6df330..2cdd0492 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/AwesomeOscillatorIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/AwesomeOscillatorIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/CCIIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/CCIIndicator.java index 052ba03a..611d992e 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/CCIIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/CCIIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/CMOIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/CMOIndicator.java index 5fff9a06..a42286a2 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/CMOIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/CMOIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/CachedIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/CachedIndicator.java index 01435f53..2deb547c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/CachedIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/CachedIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import java.util.ArrayList; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/ChandelierExitLongIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/ChandelierExitLongIndicator.java index 9be39a2c..0bf249ac 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/ChandelierExitLongIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/ChandelierExitLongIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/ChandelierExitShortIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/ChandelierExitShortIndicator.java index 67815e4a..80bc5dae 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/ChandelierExitShortIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/ChandelierExitShortIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/ChopIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/ChopIndicator.java index 4405dc08..011372f8 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/ChopIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/ChopIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/CoppockCurveIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/CoppockCurveIndicator.java index 8a533365..da25f729 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/CoppockCurveIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/CoppockCurveIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/DPOIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/DPOIndicator.java index 1846b4d1..36315e42 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/DPOIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/DPOIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/DistanceFromMAIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/DistanceFromMAIndicator.java index f5c0a246..51b98b46 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/DistanceFromMAIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/DistanceFromMAIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/DistanceFromMAPercentageIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/DistanceFromMAPercentageIndicator.java index 00e99d1b..f335941b 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/DistanceFromMAPercentageIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/DistanceFromMAPercentageIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import java.util.Arrays; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/DoubleEMAIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/DoubleEMAIndicator.java index 383e5376..9ce9c287 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/DoubleEMAIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/DoubleEMAIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/EMAIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/EMAIndicator.java index d254df74..30248ebc 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/EMAIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/EMAIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/FisherIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/FisherIndicator.java index e6d7e373..3bc0874a 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/FisherIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/FisherIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/HMAIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/HMAIndicator.java index c80b7f93..6fe9b52e 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/HMAIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/HMAIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/KAMAIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/KAMAIndicator.java index 4eb50607..391583df 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/KAMAIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/KAMAIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/KSTIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/KSTIndicator.java index 0058d05a..958c2d57 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/KSTIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/KSTIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/LWMAIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/LWMAIndicator.java index b406553a..09f1bd23 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/LWMAIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/LWMAIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/MACDIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/MACDIndicator.java index e964702d..bc492e90 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/MACDIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/MACDIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/MMAIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/MMAIndicator.java index 7f8a75e3..8651e27b 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/MMAIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/MMAIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/MassIndexIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/MassIndexIndicator.java index 5eab7e33..daa2c390 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/MassIndexIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/MassIndexIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/PPOIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/PPOIndicator.java index 0d87a868..ee2d31e1 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/PPOIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/PPOIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/PVOIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/PVOIndicator.java index d4832365..db4e6f75 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/PVOIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/PVOIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/ParabolicSarIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/ParabolicSarIndicator.java index 50b681ab..bfb312d4 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/ParabolicSarIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/ParabolicSarIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.num.NaN.NaN; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/RAVIIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/RAVIIndicator.java index c835ad5b..86d154bc 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/RAVIIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/RAVIIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/RWIHighIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/RWIHighIndicator.java index 85462575..d073d3f6 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/RWIHighIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/RWIHighIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/RWILowIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/RWILowIndicator.java index b985e969..6e2be101 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/RWILowIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/RWILowIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/RecursiveCachedIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/RecursiveCachedIndicator.java index 93b24d16..e35b163a 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/RecursiveCachedIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/RecursiveCachedIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/SMAIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/SMAIndicator.java index b4b27189..456d3cdc 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/SMAIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/SMAIndicator.java @@ -42,7 +42,7 @@ public class SMAIndicator extends CachedIndicator { * Constructor. * * @param indicator the {@link Indicator} - * @param barCount the time frame + * @param barCount the time frame */ public SMAIndicator(Indicator indicator, int barCount) { super(indicator); diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/StochasticOscillatorDIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/StochasticOscillatorDIndicator.java index 53febfff..b87b0ea8 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/StochasticOscillatorDIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/StochasticOscillatorDIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/StochasticOscillatorKIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/StochasticOscillatorKIndicator.java index b6258572..e95eb157 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/StochasticOscillatorKIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/StochasticOscillatorKIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/StochasticRSIIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/StochasticRSIIndicator.java index c85e193a..768c7b84 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/StochasticRSIIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/StochasticRSIIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/TRIXIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/TRIXIndicator.java index 79cb2696..1465f0c6 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/TRIXIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/TRIXIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/TripleEMAIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/TripleEMAIndicator.java index 99d5b807..24549986 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/TripleEMAIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/TripleEMAIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/UlcerIndexIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/UlcerIndexIndicator.java index 0031abd7..09422eda 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/UlcerIndexIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/UlcerIndexIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/WMAIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/WMAIndicator.java index 46cc9eeb..e174f081 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/WMAIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/WMAIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/WilliamsRIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/WilliamsRIndicator.java index a00618c0..42d0da5a 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/WilliamsRIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/WilliamsRIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/ZLEMAIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/ZLEMAIndicator.java index 27cc7d35..c48d311b 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/ZLEMAIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/ZLEMAIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/ZigZagIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/ZigZagIndicator.java index 08dd97cb..302dc72c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/ZigZagIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/ZigZagIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/ADXIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/ADXIndicator.java index e8a2e25d..9527a3a8 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/ADXIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/ADXIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.adx; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/DXIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/DXIndicator.java index 87bb496e..2b1f4f09 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/DXIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/DXIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.adx; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/MinusDIIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/MinusDIIndicator.java index 0ba593d0..4603057f 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/MinusDIIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/MinusDIIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.adx; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/MinusDMIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/MinusDMIndicator.java index 85f892e7..d596451c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/MinusDMIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/MinusDMIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.adx; import org.ta4j.core.Bar; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/PlusDIIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/PlusDIIndicator.java index 9891e4b2..77cfa776 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/PlusDIIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/PlusDIIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.adx; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/PlusDMIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/PlusDMIndicator.java index e7e396ac..0fc5b961 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/PlusDMIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/PlusDMIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.adx; import org.ta4j.core.Bar; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/package-info.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/package-info.java index 4ec5eb94..691674f6 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/package-info.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/adx/package-info.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /** * Indicators for the realization of the 'Directional Movement System' */ diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/aroon/AroonDownIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/aroon/AroonDownIndicator.java index 34917963..9bdb7ad4 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/aroon/AroonDownIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/aroon/AroonDownIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.aroon; import static org.ta4j.core.num.NaN.NaN; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/aroon/AroonFacade.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/aroon/AroonFacade.java index 2660eabb..3e130d93 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/aroon/AroonFacade.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/aroon/AroonFacade.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.aroon; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/aroon/AroonOscillatorIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/aroon/AroonOscillatorIndicator.java index 71443364..90506aef 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/aroon/AroonOscillatorIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/aroon/AroonOscillatorIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.aroon; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/aroon/AroonUpIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/aroon/AroonUpIndicator.java index dd97415d..e5158220 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/aroon/AroonUpIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/aroon/AroonUpIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.aroon; import static org.ta4j.core.num.NaN.NaN; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandFacade.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandFacade.java index 089f0bf5..2411d28d 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandFacade.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandFacade.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.bollinger; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandWidthIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandWidthIndicator.java index 13900016..8e6898ce 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandWidthIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandWidthIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.bollinger; import org.ta4j.core.indicators.CachedIndicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandsLowerIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandsLowerIndicator.java index fe9716e6..783add6a 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandsLowerIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandsLowerIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.bollinger; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandsMiddleIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandsMiddleIndicator.java index 4751c786..e5e51b67 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandsMiddleIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandsMiddleIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.bollinger; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandsUpperIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandsUpperIndicator.java index 91770ed5..ac3837d9 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandsUpperIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/BollingerBandsUpperIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.bollinger; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/PercentBIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/PercentBIndicator.java index 283cefd1..5609ab06 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/PercentBIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/PercentBIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.bollinger; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/package-info.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/package-info.java index 3469c228..bf7e7c02 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/package-info.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/bollinger/package-info.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /** * Indicators for the realization of the 'Bollinger Bands' */ diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BearishCandleIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BearishCandleIndicator.java index f722aa75..7e24b72f 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BearishCandleIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BearishCandleIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BearishCandleStreakIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BearishCandleStreakIndicator.java index b0f35073..b32d1899 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BearishCandleStreakIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BearishCandleStreakIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BearishEngulfingIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BearishEngulfingIndicator.java index 6259f62f..efeeb115 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BearishEngulfingIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BearishEngulfingIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import org.ta4j.core.Bar; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BearishHaramiIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BearishHaramiIndicator.java index 45e0074e..e511096c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BearishHaramiIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BearishHaramiIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import org.ta4j.core.Bar; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BullishCandleIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BullishCandleIndicator.java index 2dc79365..88cdf6dc 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BullishCandleIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BullishCandleIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BullishCandleStreakIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BullishCandleStreakIndicator.java index 1e350624..a1ae2062 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BullishCandleStreakIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BullishCandleStreakIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BullishEngulfingIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BullishEngulfingIndicator.java index b6c670fc..4475ba52 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BullishEngulfingIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BullishEngulfingIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import org.ta4j.core.Bar; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BullishHaramiIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BullishHaramiIndicator.java index 0122f885..3a6dbe42 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BullishHaramiIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/BullishHaramiIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import org.ta4j.core.Bar; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/DojiIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/DojiIndicator.java index 34a718e2..91177ab0 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/DojiIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/DojiIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/LowerShadowIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/LowerShadowIndicator.java index 0fec59dd..22557aa6 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/LowerShadowIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/LowerShadowIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import org.ta4j.core.Bar; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/RealBodyIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/RealBodyIndicator.java index cb9a85ba..632b4761 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/RealBodyIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/RealBodyIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import org.ta4j.core.Bar; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/ThreeBlackCrowsIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/ThreeBlackCrowsIndicator.java index 9eae18b3..8bec493c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/ThreeBlackCrowsIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/ThreeBlackCrowsIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import org.ta4j.core.Bar; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/ThreeWhiteSoldiersIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/ThreeWhiteSoldiersIndicator.java index 662e44b2..458599e0 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/ThreeWhiteSoldiersIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/ThreeWhiteSoldiersIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import org.ta4j.core.Bar; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/UpperShadowIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/UpperShadowIndicator.java index 059dbb03..d759a11d 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/UpperShadowIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/UpperShadowIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import org.ta4j.core.Bar; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/package-info.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/package-info.java index 067de840..8ed3bf5c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/package-info.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/candles/package-info.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /** * Indicators analyzing candle sticks and patterns */ diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/donchian/DonchianChannelLowerIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/donchian/DonchianChannelLowerIndicator.java index bf938624..b32db199 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/donchian/DonchianChannelLowerIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/donchian/DonchianChannelLowerIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.donchian; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/donchian/DonchianChannelMiddleIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/donchian/DonchianChannelMiddleIndicator.java index e8a4ac63..f80eb692 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/donchian/DonchianChannelMiddleIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/donchian/DonchianChannelMiddleIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.donchian; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/donchian/DonchianChannelUpperIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/donchian/DonchianChannelUpperIndicator.java index de1f471f..1215414c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/donchian/DonchianChannelUpperIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/donchian/DonchianChannelUpperIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.donchian; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/AmountIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/AmountIndicator.java index a3b1f122..f5f73f3b 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/AmountIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/AmountIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/ArithmeticGrowthIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/ArithmeticGrowthIndicator.java index 3e39e8c6..de2cfca1 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/ArithmeticGrowthIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/ArithmeticGrowthIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/BarPriceRangeIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/BarPriceRangeIndicator.java index 68d4a053..5e9e9fa3 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/BarPriceRangeIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/BarPriceRangeIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.Bar; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/BooleanTransformIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/BooleanTransformIndicator.java index 1ae4fd25..9da5131f 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/BooleanTransformIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/BooleanTransformIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/CloseLocationValueIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/CloseLocationValueIndicator.java index 46951191..462e0968 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/CloseLocationValueIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/CloseLocationValueIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.Bar; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/ClosePriceIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/ClosePriceIndicator.java index cebb149c..0c8e8510 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/ClosePriceIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/ClosePriceIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/CombineIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/CombineIndicator.java index 50231754..fa1799db 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/CombineIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/CombineIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import java.util.function.BinaryOperator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/ConsecutiveBooleanStreakIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/ConsecutiveBooleanStreakIndicator.java index b5b0a056..af001b3c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/ConsecutiveBooleanStreakIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/ConsecutiveBooleanStreakIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/ConstantIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/ConstantIndicator.java index 37fdc0b4..f031c64b 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/ConstantIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/ConstantIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/CrossIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/CrossIndicator.java index a3114034..81294f7c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/CrossIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/CrossIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/DateTimeIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/DateTimeIndicator.java index 4d0506e4..0220becf 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/DateTimeIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/DateTimeIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import java.time.ZonedDateTime; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/DifferenceIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/DifferenceIndicator.java index 811ea4d6..9d7b44f8 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/DifferenceIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/DifferenceIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/DifferencePercentageIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/DifferencePercentageIndicator.java index 6fd421f5..c6299e7b 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/DifferencePercentageIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/DifferencePercentageIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/FixedBooleanIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/FixedBooleanIndicator.java index 6a3cc5c7..64340c47 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/FixedBooleanIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/FixedBooleanIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/FixedDecimalIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/FixedDecimalIndicator.java index 32fcc304..e9318625 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/FixedDecimalIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/FixedDecimalIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import java.math.BigDecimal; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/FixedIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/FixedIndicator.java index 67c05c32..0423d7c4 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/FixedIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/FixedIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import java.util.ArrayList; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/GainIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/GainIndicator.java index f2594c8c..ce1bd67f 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/GainIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/GainIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/HighPriceIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/HighPriceIndicator.java index 999c6b00..f5d51c3c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/HighPriceIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/HighPriceIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/HighestValueIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/HighestValueIndicator.java index 662e50f7..ca451f5d 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/HighestValueIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/HighestValueIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/LossIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/LossIndicator.java index 53f7a6f2..f2918b3b 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/LossIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/LossIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/LowPriceIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/LowPriceIndicator.java index 24cc3cf1..76b2c767 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/LowPriceIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/LowPriceIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/MaxCompareIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/MaxCompareIndicator.java index e2059c8b..eb1e6618 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/MaxCompareIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/MaxCompareIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/MedianPriceIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/MedianPriceIndicator.java index feb4f3bf..8f428b3f 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/MedianPriceIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/MedianPriceIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.Bar; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/MinCompareIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/MinCompareIndicator.java index e8d3d6bf..8e4545da 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/MinCompareIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/MinCompareIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/MultiplierIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/MultiplierIndicator.java index f7f87273..27a30633 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/MultiplierIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/MultiplierIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/PreviousValueIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/PreviousValueIndicator.java index c06667e6..5d18b77f 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/PreviousValueIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/PreviousValueIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/PriceVariationIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/PriceVariationIndicator.java index e242507f..c8727743 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/PriceVariationIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/PriceVariationIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/SumIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/SumIndicator.java index 63661f6f..1e99ab9b 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/SumIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/SumIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/TRIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/TRIndicator.java index 742a8803..ba21bd95 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/TRIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/TRIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/TradeCountIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/TradeCountIndicator.java index a9aca110..f1d539d8 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/TradeCountIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/TradeCountIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/TransformIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/TransformIndicator.java index a3022e0a..19d135b9 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/TransformIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/TransformIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import java.util.function.Function; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/TypicalPriceIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/TypicalPriceIndicator.java index 2ff37725..32e8e5cc 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/TypicalPriceIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/TypicalPriceIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.Bar; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/UnstableIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/UnstableIndicator.java index dbac02f6..ef9db42d 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/UnstableIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/UnstableIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/VolumeIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/VolumeIndicator.java index 86709a2b..ebcc561f 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/VolumeIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/VolumeIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/package-info.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/package-info.java index 78f0444f..8c232bd9 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/package-info.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/package-info.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /** * Indicators that can be helpful (for other indicators) */ diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuChikouSpanIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuChikouSpanIndicator.java index 1dd20eb3..a3558362 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuChikouSpanIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuChikouSpanIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.ichimoku; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuKijunSenIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuKijunSenIndicator.java index 466b2d29..c8099c96 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuKijunSenIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuKijunSenIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.ichimoku; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuLineIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuLineIndicator.java index be16169e..72b99158 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuLineIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuLineIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.ichimoku; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuSenkouSpanAIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuSenkouSpanAIndicator.java index 1e473ea3..84a47ac7 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuSenkouSpanAIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuSenkouSpanAIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.ichimoku; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuSenkouSpanBIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuSenkouSpanBIndicator.java index 6b0e62aa..904b01f8 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuSenkouSpanBIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuSenkouSpanBIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.ichimoku; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuTenkanSenIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuTenkanSenIndicator.java index 892368ff..d0d7de7c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuTenkanSenIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/IchimokuTenkanSenIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.ichimoku; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/package-info.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/package-info.java index 1ad00190..7826ef49 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/package-info.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/ichimoku/package-info.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /** * Indicators for the realization of the 'Ichimoku cloud trading strategy' */ diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/KeltnerChannelFacade.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/KeltnerChannelFacade.java index 2b5e0770..f3a279b2 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/KeltnerChannelFacade.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/KeltnerChannelFacade.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.keltner; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/KeltnerChannelLowerIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/KeltnerChannelLowerIndicator.java index 9b945291..9f029eeb 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/KeltnerChannelLowerIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/KeltnerChannelLowerIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.keltner; import org.ta4j.core.indicators.ATRIndicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/KeltnerChannelMiddleIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/KeltnerChannelMiddleIndicator.java index 4b35f34e..d9201933 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/KeltnerChannelMiddleIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/KeltnerChannelMiddleIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.keltner; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/KeltnerChannelUpperIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/KeltnerChannelUpperIndicator.java index e9413667..b86479aa 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/KeltnerChannelUpperIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/KeltnerChannelUpperIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.keltner; import org.ta4j.core.indicators.ATRIndicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/package-info.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/package-info.java index 43c81f72..809a4cce 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/package-info.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/keltner/package-info.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /** * Indicators for the realization of the 'Keltner Channel' */ diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/numeric/BinaryOperation.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/numeric/BinaryOperation.java index 1638676e..47708a66 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/numeric/BinaryOperation.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/numeric/BinaryOperation.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.numeric; import java.util.function.BinaryOperator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/numeric/NumericIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/numeric/NumericIndicator.java index c0ef1433..b4e79b59 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/numeric/NumericIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/numeric/NumericIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.numeric; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/numeric/UnaryOperation.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/numeric/UnaryOperation.java index 3c5c6871..c37d8810 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/numeric/UnaryOperation.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/numeric/UnaryOperation.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.numeric; import java.util.function.UnaryOperator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/package-info.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/package-info.java index 30704cdd..cd2f1bd6 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/package-info.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/package-info.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /** * Technical indicators. * diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/DeMarkPivotPointIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/DeMarkPivotPointIndicator.java index 1803bd8e..93da10f4 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/DeMarkPivotPointIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/DeMarkPivotPointIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.pivotpoints; import static org.ta4j.core.num.NaN.NaN; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/DeMarkReversalIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/DeMarkReversalIndicator.java index 7ed424ce..fcf70802 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/DeMarkReversalIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/DeMarkReversalIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.pivotpoints; import static org.ta4j.core.num.NaN.NaN; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/FibonacciReversalIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/FibonacciReversalIndicator.java index 7bd53ba6..4f3f3798 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/FibonacciReversalIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/FibonacciReversalIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.pivotpoints; import static org.ta4j.core.num.NaN.NaN; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/PivotLevel.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/PivotLevel.java index ecd60c14..6b540be9 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/PivotLevel.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/PivotLevel.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.pivotpoints; public enum PivotLevel { diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/PivotPointIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/PivotPointIndicator.java index 6d78c375..cccd56c1 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/PivotPointIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/PivotPointIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.pivotpoints; import static org.ta4j.core.num.NaN.NaN; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/StandardReversalIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/StandardReversalIndicator.java index cd1de36d..43afa9ef 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/StandardReversalIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/StandardReversalIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.pivotpoints; import static org.ta4j.core.num.NaN.NaN; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/TimeLevel.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/TimeLevel.java index 407a6e18..6d1859ee 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/TimeLevel.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/TimeLevel.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.pivotpoints; public enum TimeLevel { diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/package-info.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/package-info.java index d5f60e4e..07b9171c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/package-info.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/pivotpoints/package-info.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /** * Indicators for the realization of different 'Pivot Points' */ diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/CorrelationCoefficientIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/CorrelationCoefficientIndicator.java index 40f8140a..a4418787 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/CorrelationCoefficientIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/CorrelationCoefficientIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/CovarianceIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/CovarianceIndicator.java index 03759671..e2c8b6ee 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/CovarianceIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/CovarianceIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/MeanDeviationIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/MeanDeviationIndicator.java index 4fc692d1..4a71c693 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/MeanDeviationIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/MeanDeviationIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/PearsonCorrelationIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/PearsonCorrelationIndicator.java index ac69fa0b..59891d1c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/PearsonCorrelationIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/PearsonCorrelationIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import static org.ta4j.core.num.NaN.NaN; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/PeriodicalGrowthRateIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/PeriodicalGrowthRateIndicator.java index c2f5c3e9..8d4f49b7 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/PeriodicalGrowthRateIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/PeriodicalGrowthRateIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import static org.ta4j.core.num.NaN.NaN; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/SigmaIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/SigmaIndicator.java index b90ea157..c96ccb86 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/SigmaIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/SigmaIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/SimpleLinearRegressionIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/SimpleLinearRegressionIndicator.java index 339618b2..7195dd67 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/SimpleLinearRegressionIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/SimpleLinearRegressionIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import static org.ta4j.core.num.NaN.NaN; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/StandardDeviationIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/StandardDeviationIndicator.java index a2bc2b25..6a9bd869 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/StandardDeviationIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/StandardDeviationIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/StandardErrorIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/StandardErrorIndicator.java index daa54e73..7d5f5442 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/StandardErrorIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/StandardErrorIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/VarianceIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/VarianceIndicator.java index 4ab3e7a9..362fe75b 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/VarianceIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/VarianceIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/package-info.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/package-info.java index 38a646e1..b94c30ba 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/package-info.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/statistics/package-info.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /** * Indicators for the realization of statistical analysis */ diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/AccumulationDistributionIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/AccumulationDistributionIndicator.java index 04476f2b..302a56bb 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/AccumulationDistributionIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/AccumulationDistributionIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/ChaikinMoneyFlowIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/ChaikinMoneyFlowIndicator.java index 3ef94599..48e0a728 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/ChaikinMoneyFlowIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/ChaikinMoneyFlowIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/ChaikinOscillatorIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/ChaikinOscillatorIndicator.java index ec5b7ea7..5083296d 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/ChaikinOscillatorIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/ChaikinOscillatorIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/IIIIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/IIIIndicator.java index 27bf569d..0423bfa5 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/IIIIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/IIIIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/MVWAPIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/MVWAPIndicator.java index 20f26953..19bc1a32 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/MVWAPIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/MVWAPIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/NVIIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/NVIIndicator.java index f2b1d2b7..04c7f99c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/NVIIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/NVIIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import org.ta4j.core.Bar; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/OnBalanceVolumeIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/OnBalanceVolumeIndicator.java index fd9084df..124bf31b 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/OnBalanceVolumeIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/OnBalanceVolumeIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/PVIIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/PVIIndicator.java index b118fa1d..e1d25ed1 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/PVIIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/PVIIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import org.ta4j.core.Bar; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/ROCVIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/ROCVIndicator.java index 7072ae23..62698834 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/ROCVIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/ROCVIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/VWAPIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/VWAPIndicator.java index 384030da..d145599b 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/VWAPIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/VWAPIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/package-info.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/package-info.java index e1ff25b6..a9715300 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/package-info.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/volume/package-info.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /** * Indicators for the realization of volume based analysis */ diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/MinusVITrendLineIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/MinusVITrendLineIndicator.java index 156926c8..bc213fc0 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/MinusVITrendLineIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/MinusVITrendLineIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.vortex; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/MinusVMIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/MinusVMIndicator.java index 9c415f4e..06e68797 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/MinusVMIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/MinusVMIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.vortex; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/PlusVITrendLineIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/PlusVITrendLineIndicator.java index cec3ca56..7aab4aa1 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/PlusVITrendLineIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/PlusVITrendLineIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.vortex; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/PlusVMIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/PlusVMIndicator.java index bd985305..52993de5 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/PlusVMIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/PlusVMIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.vortex; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/VortexFacade.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/VortexFacade.java index df44f536..e52a2880 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/VortexFacade.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/vortex/VortexFacade.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.vortex; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/num/DecimalNum.java b/ta4j-core/src/main/java/org/ta4j/core/num/DecimalNum.java index a19316bb..f06821b6 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/num/DecimalNum.java +++ b/ta4j-core/src/main/java/org/ta4j/core/num/DecimalNum.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.num; import static org.ta4j.core.num.NaN.NaN; diff --git a/ta4j-core/src/main/java/org/ta4j/core/num/NaN.java b/ta4j-core/src/main/java/org/ta4j/core/num/NaN.java index 53599a0c..2bb1b74f 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/num/NaN.java +++ b/ta4j-core/src/main/java/org/ta4j/core/num/NaN.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.num; import java.math.RoundingMode; diff --git a/ta4j-core/src/main/java/org/ta4j/core/num/Num.java b/ta4j-core/src/main/java/org/ta4j/core/num/Num.java index 3d8f111e..44add6c8 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/num/Num.java +++ b/ta4j-core/src/main/java/org/ta4j/core/num/Num.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.num; import java.io.Serializable; diff --git a/ta4j-core/src/main/java/org/ta4j/core/num/package-info.java b/ta4j-core/src/main/java/org/ta4j/core/num/package-info.java index 1cc54b21..3b8e7dfc 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/num/package-info.java +++ b/ta4j-core/src/main/java/org/ta4j/core/num/package-info.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /** * {@link org.ta4j.core.num.Num Num} interface and implementations of * {@link org.ta4j.core.num.NaN NaN}, {@link org.ta4j.core.num.DoubleNum diff --git a/ta4j-core/src/main/java/org/ta4j/core/package-info.java b/ta4j-core/src/main/java/org/ta4j/core/package-info.java index 6d0067d3..495dafc8 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/package-info.java +++ b/ta4j-core/src/main/java/org/ta4j/core/package-info.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /** * The core module of the ta4j library */ diff --git a/ta4j-core/src/main/java/org/ta4j/core/reports/PerformanceReport.java b/ta4j-core/src/main/java/org/ta4j/core/reports/PerformanceReport.java index 7bc6acd3..25d122f4 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/reports/PerformanceReport.java +++ b/ta4j-core/src/main/java/org/ta4j/core/reports/PerformanceReport.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.reports; import org.ta4j.core.num.Num; diff --git a/ta4j-core/src/main/java/org/ta4j/core/reports/PerformanceReportGenerator.java b/ta4j-core/src/main/java/org/ta4j/core/reports/PerformanceReportGenerator.java index 61e3ae07..0116dfc8 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/reports/PerformanceReportGenerator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/reports/PerformanceReportGenerator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.reports; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/reports/PositionStatsReport.java b/ta4j-core/src/main/java/org/ta4j/core/reports/PositionStatsReport.java index 004c608a..0d17df7f 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/reports/PositionStatsReport.java +++ b/ta4j-core/src/main/java/org/ta4j/core/reports/PositionStatsReport.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.reports; import org.ta4j.core.num.Num; diff --git a/ta4j-core/src/main/java/org/ta4j/core/reports/PositionStatsReportGenerator.java b/ta4j-core/src/main/java/org/ta4j/core/reports/PositionStatsReportGenerator.java index c6dde3e2..6374a48c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/reports/PositionStatsReportGenerator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/reports/PositionStatsReportGenerator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.reports; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/reports/ReportGenerator.java b/ta4j-core/src/main/java/org/ta4j/core/reports/ReportGenerator.java index 4285f0f2..12aae03d 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/reports/ReportGenerator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/reports/ReportGenerator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.reports; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/reports/TradingStatement.java b/ta4j-core/src/main/java/org/ta4j/core/reports/TradingStatement.java index e965ba55..4a0e828a 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/reports/TradingStatement.java +++ b/ta4j-core/src/main/java/org/ta4j/core/reports/TradingStatement.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.reports; import org.ta4j.core.Strategy; diff --git a/ta4j-core/src/main/java/org/ta4j/core/reports/TradingStatementGenerator.java b/ta4j-core/src/main/java/org/ta4j/core/reports/TradingStatementGenerator.java index 9b87afd6..fa33a2f6 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/reports/TradingStatementGenerator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/reports/TradingStatementGenerator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.reports; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/reports/package-info.java b/ta4j-core/src/main/java/org/ta4j/core/reports/package-info.java index 8f9c538d..33ed3760 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/reports/package-info.java +++ b/ta4j-core/src/main/java/org/ta4j/core/reports/package-info.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /** * The main module for trade reports * diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/ATRStopGainRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/ATRStopGainRule.java index c25bd2ac..d5819470 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/ATRStopGainRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/ATRStopGainRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/AbsoluteValueOverRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/AbsoluteValueOverRule.java index 4b78990e..1caf87d6 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/AbsoluteValueOverRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/AbsoluteValueOverRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/AbsoluteValueUnderRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/AbsoluteValueUnderRule.java index c820fc10..9bfa2620 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/AbsoluteValueUnderRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/AbsoluteValueUnderRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/AbstractRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/AbstractRule.java index 9488a4b4..ee8b5301 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/AbstractRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/AbstractRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.slf4j.Logger; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/AndRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/AndRule.java index 209ef34c..24e88041 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/AndRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/AndRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Rule; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/BooleanIndicatorRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/BooleanIndicatorRule.java index a5f2c6d5..b44d5edd 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/BooleanIndicatorRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/BooleanIndicatorRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/BooleanRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/BooleanRule.java index af41edf9..eee10f97 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/BooleanRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/BooleanRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.TradingRecord; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/ChainRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/ChainRule.java index 4894f78c..037384de 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/ChainRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/ChainRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import java.util.Arrays; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/CrossedDownIndicatorRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/CrossedDownIndicatorRule.java index fee07d04..c472350a 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/CrossedDownIndicatorRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/CrossedDownIndicatorRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/CrossedUpIndicatorRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/CrossedUpIndicatorRule.java index 5fe78723..81e7e63c 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/CrossedUpIndicatorRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/CrossedUpIndicatorRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/DayOfWeekRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/DayOfWeekRule.java index c10efe30..fa9995c0 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/DayOfWeekRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/DayOfWeekRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import java.time.DayOfWeek; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/DollarStopGainRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/DollarStopGainRule.java index 22a8b07c..fcd1629b 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/DollarStopGainRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/DollarStopGainRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/DollarStopLossRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/DollarStopLossRule.java index 27a2f81b..8d69d251 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/DollarStopLossRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/DollarStopLossRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/FixedRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/FixedRule.java index 222037cc..f4ff6b96 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/FixedRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/FixedRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import java.util.Arrays; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/FlipFlopRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/FlipFlopRule.java index c6733b8e..3f331c53 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/FlipFlopRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/FlipFlopRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.TradingRecord; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/InPipeRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/InPipeRule.java index e94ac107..67d7f7e0 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/InPipeRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/InPipeRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/InSlopeRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/InSlopeRule.java index 3cb93960..6961d443 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/InSlopeRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/InSlopeRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.ta4j.core.num.NaN.NaN; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/IsEqualRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/IsEqualRule.java index 6b02a6c2..ba186f15 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/IsEqualRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/IsEqualRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/IsFallingRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/IsFallingRule.java index 05b80967..3ec398fa 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/IsFallingRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/IsFallingRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/IsHighestRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/IsHighestRule.java index dff1f9fc..885788b1 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/IsHighestRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/IsHighestRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/IsLowestRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/IsLowestRule.java index 2941f5ba..df035b93 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/IsLowestRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/IsLowestRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/JustOnceRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/JustOnceRule.java index 31b9fade..bcb23689 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/JustOnceRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/JustOnceRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Rule; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/ModulusIndexRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/ModulusIndexRule.java index fe521acb..65c62ede 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/ModulusIndexRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/ModulusIndexRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.TradingRecord; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/NotRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/NotRule.java index bb6f3a76..49d00401 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/NotRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/NotRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Rule; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/OpenedPositionMinimumBarCountRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/OpenedPositionMinimumBarCountRule.java index b84cc851..b6bb9b12 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/OpenedPositionMinimumBarCountRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/OpenedPositionMinimumBarCountRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.TradingRecord; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/OpenedPositionMinimumProfitableBarCountRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/OpenedPositionMinimumProfitableBarCountRule.java index 2e3565dc..9632a8d7 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/OpenedPositionMinimumProfitableBarCountRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/OpenedPositionMinimumProfitableBarCountRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.BarSeries; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/OrRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/OrRule.java index 9b98bc10..12291791 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/OrRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/OrRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Rule; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/OverIndicatorRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/OverIndicatorRule.java index b4681414..186a3b9d 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/OverIndicatorRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/OverIndicatorRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/PercentageOverLastBuyPriceRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/PercentageOverLastBuyPriceRule.java index 065c38da..b438f279 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/PercentageOverLastBuyPriceRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/PercentageOverLastBuyPriceRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/PercentageOverRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/PercentageOverRule.java index ec3f19c1..7650413f 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/PercentageOverRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/PercentageOverRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/PercentageUnderLastBuyPriceRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/PercentageUnderLastBuyPriceRule.java index c8d2a83c..ab5bd554 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/PercentageUnderLastBuyPriceRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/PercentageUnderLastBuyPriceRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/PercentageUnderRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/PercentageUnderRule.java index 50a517c9..2496857e 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/PercentageUnderRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/PercentageUnderRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/StopGainRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/StopGainRule.java index 4f975fd8..c93a7886 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/StopGainRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/StopGainRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/StopLossRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/StopLossRule.java index 670d1e08..6b07164f 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/StopLossRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/StopLossRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/TimeRangeRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/TimeRangeRule.java index f151dcef..47324fed 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/TimeRangeRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/TimeRangeRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import java.time.LocalTime; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/TrailingStopGainRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/TrailingStopGainRule.java index cfc886fe..8aabfe59 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/TrailingStopGainRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/TrailingStopGainRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Position; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/TrailingStopLossRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/TrailingStopLossRule.java index 21754079..b58046b5 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/TrailingStopLossRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/TrailingStopLossRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/UnderIndicatorRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/UnderIndicatorRule.java index b6961186..cf2fbb4f 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/UnderIndicatorRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/UnderIndicatorRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/WaitForRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/WaitForRule.java index 7e275847..69e694f6 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/WaitForRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/WaitForRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Bar; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/XorRule.java b/ta4j-core/src/main/java/org/ta4j/core/rules/XorRule.java index 6d8cb281..bf73dc8b 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/XorRule.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/XorRule.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import org.ta4j.core.Rule; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/helper/ChainLink.java b/ta4j-core/src/main/java/org/ta4j/core/rules/helper/ChainLink.java index 9abfdc8c..6e241c68 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/helper/ChainLink.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/helper/ChainLink.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules.helper; import java.io.Serializable; diff --git a/ta4j-core/src/main/java/org/ta4j/core/rules/package-info.java b/ta4j-core/src/main/java/org/ta4j/core/rules/package-info.java index be5b57e4..27ca0b49 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/rules/package-info.java +++ b/ta4j-core/src/main/java/org/ta4j/core/rules/package-info.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /** * Trading rules for trading strategies. * diff --git a/ta4j-core/src/main/java/org/ta4j/core/utils/BarSeriesUtils.java b/ta4j-core/src/main/java/org/ta4j/core/utils/BarSeriesUtils.java index f87bd920..0ea32f33 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/utils/BarSeriesUtils.java +++ b/ta4j-core/src/main/java/org/ta4j/core/utils/BarSeriesUtils.java @@ -146,7 +146,7 @@ public static List findMissingBars(BarSeries barSeries, boolean f * beginIndex, endIndex and * maximumBarCount from the provided barSeries. * - * @param barSeries the BarSeries + * @param barSeries the BarSeries * @param num * @return new cloned BarSeries with bars converted by conversionFunction */ diff --git a/ta4j-core/src/test/java/org/ta4j/core/BarSeriesManagerTest.java b/ta4j-core/src/test/java/org/ta4j/core/BarSeriesManagerTest.java index fce256c0..c5de29cb 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/BarSeriesManagerTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/BarSeriesManagerTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/BarTest.java b/ta4j-core/src/test/java/org/ta4j/core/BarTest.java index 9bf51784..596967e5 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/BarTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/BarTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/BaseBarBuilderTest.java b/ta4j-core/src/test/java/org/ta4j/core/BaseBarBuilderTest.java index 2d413a34..295ccb7b 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/BaseBarBuilderTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/BaseBarBuilderTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/ConvertibleBaseBarBuilderTest.java b/ta4j-core/src/test/java/org/ta4j/core/ConvertibleBaseBarBuilderTest.java index 0f6be860..2b5efaa8 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/ConvertibleBaseBarBuilderTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/ConvertibleBaseBarBuilderTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/CriterionFactory.java b/ta4j-core/src/test/java/org/ta4j/core/CriterionFactory.java index 3c39d7b2..5876aa6e 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/CriterionFactory.java +++ b/ta4j-core/src/test/java/org/ta4j/core/CriterionFactory.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; @FunctionalInterface diff --git a/ta4j-core/src/test/java/org/ta4j/core/ExternalCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/ExternalCriterionTest.java index b3314aa8..cac07af3 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/ExternalCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/ExternalCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import org.ta4j.core.num.Num; diff --git a/ta4j-core/src/test/java/org/ta4j/core/ExternalIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/ExternalIndicatorTest.java index bbce4a3b..e0b82f49 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/ExternalIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/ExternalIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import org.ta4j.core.num.Num; diff --git a/ta4j-core/src/test/java/org/ta4j/core/IndicatorFactory.java b/ta4j-core/src/test/java/org/ta4j/core/IndicatorFactory.java index 7db8fc7b..974a5bff 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/IndicatorFactory.java +++ b/ta4j-core/src/test/java/org/ta4j/core/IndicatorFactory.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; @FunctionalInterface diff --git a/ta4j-core/src/test/java/org/ta4j/core/IndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/IndicatorTest.java index bb3f72d6..c08795bc 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/IndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/IndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/PositionTest.java b/ta4j-core/src/test/java/org/ta4j/core/PositionTest.java index 823303c2..f4c47866 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/PositionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/PositionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import java.time.ZonedDateTime; diff --git a/ta4j-core/src/test/java/org/ta4j/core/SeriesBuilderTest.java b/ta4j-core/src/test/java/org/ta4j/core/SeriesBuilderTest.java index fe376e99..45fa6480 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/SeriesBuilderTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/SeriesBuilderTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/TestUtils.java b/ta4j-core/src/test/java/org/ta4j/core/TestUtils.java index 5c52afcb..31882a11 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/TestUtils.java +++ b/ta4j-core/src/test/java/org/ta4j/core/TestUtils.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/TestUtilsTest.java b/ta4j-core/src/test/java/org/ta4j/core/TestUtilsTest.java index 588c8e86..076f0308 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/TestUtilsTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/TestUtilsTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import static org.ta4j.core.TestUtils.assertIndicatorEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/TradeTest.java b/ta4j-core/src/test/java/org/ta4j/core/TradeTest.java index 887a8fe3..dc1229c0 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/TradeTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/TradeTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import java.time.ZonedDateTime; diff --git a/ta4j-core/src/test/java/org/ta4j/core/TradingRecordTest.java b/ta4j-core/src/test/java/org/ta4j/core/TradingRecordTest.java index b95ccef5..41de2c48 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/TradingRecordTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/TradingRecordTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import java.time.ZonedDateTime; diff --git a/ta4j-core/src/test/java/org/ta4j/core/XlsTestsUtils.java b/ta4j-core/src/test/java/org/ta4j/core/XlsTestsUtils.java index 9a01103c..0e818c5f 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/XlsTestsUtils.java +++ b/ta4j-core/src/test/java/org/ta4j/core/XlsTestsUtils.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core; import java.io.IOException; diff --git a/ta4j-core/src/test/java/org/ta4j/core/aggregator/BaseBarSeriesAggregatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/aggregator/BaseBarSeriesAggregatorTest.java index 27f0aed2..bef0b495 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/aggregator/BaseBarSeriesAggregatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/aggregator/BaseBarSeriesAggregatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.aggregator; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/aggregator/DurationBarAggregatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/aggregator/DurationBarAggregatorTest.java index 11f2096f..d403f5bb 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/aggregator/DurationBarAggregatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/aggregator/DurationBarAggregatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.aggregator; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/analysis/CashFlowTest.java b/ta4j-core/src/test/java/org/ta4j/core/analysis/CashFlowTest.java index 2d80a3f8..7913e2aa 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/analysis/CashFlowTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/analysis/CashFlowTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.analysis; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/analysis/ReturnsTest.java b/ta4j-core/src/test/java/org/ta4j/core/analysis/ReturnsTest.java index 506960db..75ac1a7a 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/analysis/ReturnsTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/analysis/ReturnsTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.analysis; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/analysis/cost/FixedTransactionCostModelTest.java b/ta4j-core/src/test/java/org/ta4j/core/analysis/cost/FixedTransactionCostModelTest.java index 34d4d0b3..56b1f359 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/analysis/cost/FixedTransactionCostModelTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/analysis/cost/FixedTransactionCostModelTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.analysis.cost; import java.time.ZonedDateTime; diff --git a/ta4j-core/src/test/java/org/ta4j/core/analysis/cost/LinearBorrowingCostModelTest.java b/ta4j-core/src/test/java/org/ta4j/core/analysis/cost/LinearBorrowingCostModelTest.java index 028d6985..bfefa8cd 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/analysis/cost/LinearBorrowingCostModelTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/analysis/cost/LinearBorrowingCostModelTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.analysis.cost; import java.time.ZonedDateTime; diff --git a/ta4j-core/src/test/java/org/ta4j/core/analysis/cost/LinearTransactionCostModelTest.java b/ta4j-core/src/test/java/org/ta4j/core/analysis/cost/LinearTransactionCostModelTest.java index c8fd26a8..91274a3f 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/analysis/cost/LinearTransactionCostModelTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/analysis/cost/LinearTransactionCostModelTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.analysis.cost; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/analysis/cost/ZeroCostModelTest.java b/ta4j-core/src/test/java/org/ta4j/core/analysis/cost/ZeroCostModelTest.java index 1936eff2..7ae9c6f3 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/analysis/cost/ZeroCostModelTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/analysis/cost/ZeroCostModelTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.analysis.cost; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/AbstractAnalysisCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/AbstractAnalysisCriterionTest.java index 3d010817..e4492887 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/AbstractAnalysisCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/AbstractAnalysisCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/AbstractCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/AbstractCriterionTest.java index 8dd05ff3..93b657f7 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/AbstractCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/AbstractCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import java.util.Arrays; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/AverageLossStreakCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/AverageLossStreakCriterionTest.java index a5442a0f..b7a46c67 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/AverageLossStreakCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/AverageLossStreakCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/AverageReturnPerBarCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/AverageReturnPerBarCriterionTest.java index 4356aac9..c27bb54c 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/AverageReturnPerBarCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/AverageReturnPerBarCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/AverageWinStreakCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/AverageWinStreakCriterionTest.java index 85377c23..0d14a8d4 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/AverageWinStreakCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/AverageWinStreakCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/EnterAndHoldReturnCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/EnterAndHoldReturnCriterionTest.java index e4c402fd..b6a9f009 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/EnterAndHoldReturnCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/EnterAndHoldReturnCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/ExpectancyCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/ExpectancyCriterionTest.java index 9eb8e0f5..63c43a98 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/ExpectancyCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/ExpectancyCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/ExpectedShortfallCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/ExpectedShortfallCriterionTest.java index 7800a84e..f831e627 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/ExpectedShortfallCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/ExpectedShortfallCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/LinearTransactionCostCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/LinearTransactionCostCriterionTest.java index 7b6af53e..56a72ffb 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/LinearTransactionCostCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/LinearTransactionCostCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/LosingPositionsRatioCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/LosingPositionsRatioCriterionTest.java index 430e46b8..73e43854 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/LosingPositionsRatioCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/LosingPositionsRatioCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/MaximumDrawdownCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/MaximumDrawdownCriterionTest.java index 81ad59df..02d01022 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/MaximumDrawdownCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/MaximumDrawdownCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfBarsCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfBarsCriterionTest.java index 98e50226..09cedf30 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfBarsCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfBarsCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfBreakEvenPositionsCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfBreakEvenPositionsCriterionTest.java index e00f581a..91bd823f 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfBreakEvenPositionsCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfBreakEvenPositionsCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfConsecutivePositionsCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfConsecutivePositionsCriterionTest.java index f68bfb42..db003dc4 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfConsecutivePositionsCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfConsecutivePositionsCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfLosingPositionsCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfLosingPositionsCriterionTest.java index 0662c29f..3d95ffd7 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfLosingPositionsCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfLosingPositionsCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfPositionsCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfPositionsCriterionTest.java index c03ac600..b0006105 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfPositionsCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfPositionsCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfWinningPositionsCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfWinningPositionsCriterionTest.java index 2b194edd..1b8b76f3 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfWinningPositionsCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/NumberOfWinningPositionsCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/OpenedPositionUtils.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/OpenedPositionUtils.java index ddcb9aa7..347c937f 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/OpenedPositionUtils.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/OpenedPositionUtils.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/ReturnOverMaxDrawdownCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/ReturnOverMaxDrawdownCriterionTest.java index e0c0f5c2..290006c1 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/ReturnOverMaxDrawdownCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/ReturnOverMaxDrawdownCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/SqnCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/SqnCriterionTest.java index 3e759980..e9aeb2a2 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/SqnCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/SqnCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/TotalProfitCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/TotalProfitCriterionTest.java index d39ae1c0..d5b8de86 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/TotalProfitCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/TotalProfitCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import java.math.RoundingMode; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/ValueAtRiskCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/ValueAtRiskCriterionTest.java index ff721471..06000951 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/ValueAtRiskCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/ValueAtRiskCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/VersusBuyAndHoldCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/VersusBuyAndHoldCriterionTest.java index 5cb92b85..3dc9b9a7 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/VersusBuyAndHoldCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/VersusBuyAndHoldCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import java.time.ZonedDateTime; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/WinningPositionsRatioCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/WinningPositionsRatioCriterionTest.java index b1851599..7a2e05a1 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/WinningPositionsRatioCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/WinningPositionsRatioCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/XLSCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/XLSCriterionTest.java index 3e5c09ae..63dd6314 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/XLSCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/XLSCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria; import java.util.function.Function; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/AverageCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/AverageCriterionTest.java index d298f0c4..b0594ea3 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/AverageCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/AverageCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.helpers; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/RelativeStandardDeviationCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/RelativeStandardDeviationCriterionTest.java index aff3435a..65871ba0 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/RelativeStandardDeviationCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/RelativeStandardDeviationCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.helpers; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/StandardDeviationCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/StandardDeviationCriterionTest.java index 7db934f5..f894fc85 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/StandardDeviationCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/StandardDeviationCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.helpers; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/StandardErrorCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/StandardErrorCriterionTest.java index 77aadda8..072cd7fe 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/StandardErrorCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/StandardErrorCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.helpers; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/VarianceCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/VarianceCriterionTest.java index 0b191df2..4335336b 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/VarianceCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/helpers/VarianceCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.helpers; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/AverageLossCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/AverageLossCriterionTest.java index dfd57dce..4e609bfd 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/AverageLossCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/AverageLossCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/AverageProfitCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/AverageProfitCriterionTest.java index 438c153c..267a9bbd 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/AverageProfitCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/AverageProfitCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/GrossLossCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/GrossLossCriterionTest.java index 570777db..81aae5a1 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/GrossLossCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/GrossLossCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import java.util.function.Function; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/GrossProfitCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/GrossProfitCriterionTest.java index 3b637034..74147482 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/GrossProfitCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/GrossProfitCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import java.util.function.Function; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/GrossReturnCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/GrossReturnCriterionTest.java index c1db7cd7..c3571715 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/GrossReturnCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/GrossReturnCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/NetLossCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/NetLossCriterionTest.java index 22f0b7cd..ae545e4d 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/NetLossCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/NetLossCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/NetProfitCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/NetProfitCriterionTest.java index 62693f73..e522a812 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/NetProfitCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/NetProfitCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/ProfitLossCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/ProfitLossCriterionTest.java index c9ad47b8..ab7ccc1d 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/ProfitLossCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/ProfitLossCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/ProfitLossPercentageCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/ProfitLossPercentageCriterionTest.java index 6b1bd5cc..1a910626 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/ProfitLossPercentageCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/ProfitLossPercentageCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/ProfitLossRatioCriterionTest.java b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/ProfitLossRatioCriterionTest.java index 0433513e..1580ac0e 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/ProfitLossRatioCriterionTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/criteria/pnl/ProfitLossRatioCriterionTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.criteria.pnl; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/ATRIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/ATRIndicatorTest.java index fc874c8a..dbc6d977 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/ATRIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/ATRIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/AbstractIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/AbstractIndicatorTest.java index 6fb7ec3f..68d54c6b 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/AbstractIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/AbstractIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import java.math.BigDecimal; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/AccelerationDecelerationIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/AccelerationDecelerationIndicatorTest.java index 73275df3..135bf0ae 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/AccelerationDecelerationIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/AccelerationDecelerationIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/ArithmeticGrowthIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/ArithmeticGrowthIndicatorTest.java index b449d5f0..8f356d3b 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/ArithmeticGrowthIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/ArithmeticGrowthIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/AwesomeOscillatorIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/AwesomeOscillatorIndicatorTest.java index d33d2551..e05b1cd5 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/AwesomeOscillatorIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/AwesomeOscillatorIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/CCIIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/CCIIndicatorTest.java index 2ec336e4..1ea38aec 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/CCIIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/CCIIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/CMOIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/CMOIndicatorTest.java index ebd4483b..819d8f38 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/CMOIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/CMOIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/CachedIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/CachedIndicatorTest.java index ac319ab4..f864349e 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/CachedIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/CachedIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/ChandelierExitLongIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/ChandelierExitLongIndicatorTest.java index 29f965cd..60d7957e 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/ChandelierExitLongIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/ChandelierExitLongIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/ChandelierExitShortIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/ChandelierExitShortIndicatorTest.java index 469b8411..081ed713 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/ChandelierExitShortIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/ChandelierExitShortIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/ChopIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/ChopIndicatorTest.java index fe357c23..9756fdac 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/ChopIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/ChopIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /** * */ diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/CoppockCurveIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/CoppockCurveIndicatorTest.java index 86598b86..3199c8aa 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/CoppockCurveIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/CoppockCurveIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/DPOIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/DPOIndicatorTest.java index 78e54a76..34c6ec10 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/DPOIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/DPOIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/DistanceFromMAPercentageIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/DistanceFromMAPercentageIndicatorTest.java index 0ce41eec..fb5ebed6 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/DistanceFromMAPercentageIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/DistanceFromMAPercentageIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/DoubleEMAIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/DoubleEMAIndicatorTest.java index 880f0cfb..06d5e835 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/DoubleEMAIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/DoubleEMAIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/EMAIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/EMAIndicatorTest.java index eb6a8907..727a0d01 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/EMAIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/EMAIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/FisherIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/FisherIndicatorTest.java index 44d2f659..e8fcaff6 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/FisherIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/FisherIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/HMAIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/HMAIndicatorTest.java index 9540f3fb..6b7d0075 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/HMAIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/HMAIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/KAMAIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/KAMAIndicatorTest.java index 9b1aca4f..ad480760 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/KAMAIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/KAMAIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/KSTIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/KSTIndicatorTest.java index 516e47d3..78cccb1e 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/KSTIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/KSTIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/LWMAIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/LWMAIndicatorTest.java index 2a1f3961..8ac3c499 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/LWMAIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/LWMAIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/MACDIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/MACDIndicatorTest.java index ff1e4e64..cff7a354 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/MACDIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/MACDIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/MMAIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/MMAIndicatorTest.java index 0c962e3c..94160cd2 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/MMAIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/MMAIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/MassIndexIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/MassIndexIndicatorTest.java index 3298bc97..c065d961 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/MassIndexIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/MassIndexIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/PPOIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/PPOIndicatorTest.java index 6b56ae17..389a8f6c 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/PPOIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/PPOIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/PVOIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/PVOIndicatorTest.java index 6c88f6b1..afcf8dcf 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/PVOIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/PVOIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/ParabolicSarIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/ParabolicSarIndicatorTest.java index e88f69f2..eaf0b92c 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/ParabolicSarIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/ParabolicSarIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/RAVIIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/RAVIIndicatorTest.java index 4f1eda17..004ebd5a 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/RAVIIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/RAVIIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/ROCIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/ROCIndicatorTest.java index 3a033b1d..f1de079e 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/ROCIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/ROCIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/RWIHighIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/RWIHighIndicatorTest.java index ff67dc81..e5fb492f 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/RWIHighIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/RWIHighIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertIndicatorEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/RWILowIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/RWILowIndicatorTest.java index 11c0d4a5..3876f945 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/RWILowIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/RWILowIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertIndicatorEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/StochasticOscillatorDIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/StochasticOscillatorDIndicatorTest.java index bafe993a..2cb4600a 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/StochasticOscillatorDIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/StochasticOscillatorDIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/StochasticOscillatorKIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/StochasticOscillatorKIndicatorTest.java index 46daaca0..204a8ec6 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/StochasticOscillatorKIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/StochasticOscillatorKIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/StochasticRSIIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/StochasticRSIIndicatorTest.java index ee884ac7..ba3883fe 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/StochasticRSIIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/StochasticRSIIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertIndicatorEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/TRIXIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/TRIXIndicatorTest.java index a0bda40f..5d99970a 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/TRIXIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/TRIXIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import java.math.RoundingMode; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/TripleEMAIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/TripleEMAIndicatorTest.java index e3e78a0a..e5673753 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/TripleEMAIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/TripleEMAIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/UlcerIndexIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/UlcerIndexIndicatorTest.java index 7b0c1392..abfcfa9f 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/UlcerIndexIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/UlcerIndexIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/WMAIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/WMAIndicatorTest.java index 3c482eec..258ff6c3 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/WMAIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/WMAIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/WilliamsRIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/WilliamsRIndicatorTest.java index 811ce770..7254a31c 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/WilliamsRIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/WilliamsRIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/XLSIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/XLSIndicatorTest.java index 4fc8957a..3dfff543 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/XLSIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/XLSIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import java.util.function.Function; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/ZLEMAIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/ZLEMAIndicatorTest.java index 369144ff..16b18df5 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/ZLEMAIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/ZLEMAIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/ZigZagIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/ZigZagIndicatorTest.java index 2905d6f9..667018a2 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/ZigZagIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/ZigZagIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.junit.Before; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/ADXIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/ADXIndicatorTest.java index 66d426ae..0cd019ee 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/ADXIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/ADXIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.adx; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/MinusDIIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/MinusDIIndicatorTest.java index 0c3d996a..6db4f596 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/MinusDIIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/MinusDIIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.adx; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/MinusDMIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/MinusDMIndicatorTest.java index 5c7d5527..e19d593e 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/MinusDMIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/MinusDMIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.adx; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/PlusDIIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/PlusDIIndicatorTest.java index 6bd86431..0dcfe112 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/PlusDIIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/PlusDIIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.adx; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/PlusDMIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/PlusDMIndicatorTest.java index 735babcd..2da06951 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/PlusDMIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/adx/PlusDMIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.adx; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/aroon/AroonDownIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/aroon/AroonDownIndicatorTest.java index ced21a04..8f17001c 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/aroon/AroonDownIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/aroon/AroonDownIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.aroon; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/aroon/AroonFacadeTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/aroon/AroonFacadeTest.java index 5e887b46..3327b303 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/aroon/AroonFacadeTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/aroon/AroonFacadeTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.aroon; import org.junit.Before; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/aroon/AroonOscillatorIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/aroon/AroonOscillatorIndicatorTest.java index 1d14e901..bfba0f57 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/aroon/AroonOscillatorIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/aroon/AroonOscillatorIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.aroon; import static org.junit.Assert.assertNotNull; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/aroon/AroonUpIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/aroon/AroonUpIndicatorTest.java index 84993cbf..983c0fdd 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/aroon/AroonUpIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/aroon/AroonUpIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.aroon; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandFacadeTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandFacadeTest.java index e170b76c..8ff47cfd 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandFacadeTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandFacadeTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.bollinger; import org.junit.Test; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandWidthIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandWidthIndicatorTest.java index af90e735..fdb53576 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandWidthIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandWidthIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.bollinger; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandsLowerIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandsLowerIndicatorTest.java index eb577e29..1e0fbca8 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandsLowerIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandsLowerIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.bollinger; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandsMiddleIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandsMiddleIndicatorTest.java index bac8f2d2..15981718 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandsMiddleIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandsMiddleIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.bollinger; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandsUpperIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandsUpperIndicatorTest.java index 924acb50..f4f79468 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandsUpperIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/BollingerBandsUpperIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.bollinger; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/PercentBIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/PercentBIndicatorTest.java index d9d4db83..f21e34d5 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/PercentBIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/bollinger/PercentBIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.bollinger; import static org.junit.Assert.assertTrue; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BearishCandleStreakIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BearishCandleStreakIndicatorTest.java index ff97b0e8..4a823df5 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BearishCandleStreakIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BearishCandleStreakIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BearishEngulfingIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BearishEngulfingIndicatorTest.java index 18c4cd52..0e7ef724 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BearishEngulfingIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BearishEngulfingIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BearishHaramiIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BearishHaramiIndicatorTest.java index f131ede3..a5d8bc4e 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BearishHaramiIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BearishHaramiIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BullishCandleStreakIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BullishCandleStreakIndicatorTest.java index b9b7799b..4b9dea09 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BullishCandleStreakIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BullishCandleStreakIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BullishEngulfingIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BullishEngulfingIndicatorTest.java index 7881e868..ff9f57b7 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BullishEngulfingIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BullishEngulfingIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BullishHaramiIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BullishHaramiIndicatorTest.java index 2296bcd3..e6f2d684 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BullishHaramiIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/BullishHaramiIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/DojiIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/DojiIndicatorTest.java index fb397223..70e197c2 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/DojiIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/DojiIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/LowerShadowIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/LowerShadowIndicatorTest.java index 4108d583..6d9e9bf5 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/LowerShadowIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/LowerShadowIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/RealBodyIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/RealBodyIndicatorTest.java index ab3cc6e7..eca4894e 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/RealBodyIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/RealBodyIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/ThreeBlackCrowsIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/ThreeBlackCrowsIndicatorTest.java index 1a1646f7..8e331e25 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/ThreeBlackCrowsIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/ThreeBlackCrowsIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/ThreeWhiteSoldiersIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/ThreeWhiteSoldiersIndicatorTest.java index d97b9738..99bd737e 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/ThreeWhiteSoldiersIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/ThreeWhiteSoldiersIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/UpperShadowIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/UpperShadowIndicatorTest.java index dcc6aa7d..3289a19b 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/UpperShadowIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/candles/UpperShadowIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.candles; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/donchian/DonchianChannelLowerIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/donchian/DonchianChannelLowerIndicatorTest.java index 32121a2b..de10d016 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/donchian/DonchianChannelLowerIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/donchian/DonchianChannelLowerIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.donchian; import java.time.Duration; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/donchian/DonchianChannelMiddleIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/donchian/DonchianChannelMiddleIndicatorTest.java index e6b9feef..dd69901e 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/donchian/DonchianChannelMiddleIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/donchian/DonchianChannelMiddleIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.donchian; import java.time.Duration; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/donchian/DonchianChannelUpperIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/donchian/DonchianChannelUpperIndicatorTest.java index ab8e7fe8..9f145fb4 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/donchian/DonchianChannelUpperIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/donchian/DonchianChannelUpperIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.donchian; import java.time.Duration; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/AmountIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/AmountIndicatorTest.java index 54bcaa7e..d8a40248 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/AmountIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/AmountIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/BarPriceRangeIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/BarPriceRangeIndicatorTest.java index 351a968d..68a96b1a 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/BarPriceRangeIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/BarPriceRangeIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/BooleanTransformIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/BooleanTransformIndicatorTest.java index 08b6e592..e6d232cd 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/BooleanTransformIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/BooleanTransformIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/CloseLocationValueIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/CloseLocationValueIndicatorTest.java index bb53c827..12d136cc 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/CloseLocationValueIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/CloseLocationValueIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/ClosePriceIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/ClosePriceIndicatorTest.java index 78c95f57..f77784c6 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/ClosePriceIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/ClosePriceIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/CombineIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/CombineIndicatorTest.java index 6fcd5099..18719844 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/CombineIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/CombineIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/ConsecutiveBooleanStreakIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/ConsecutiveBooleanStreakIndicatorTest.java index 7b291af2..82b7c86c 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/ConsecutiveBooleanStreakIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/ConsecutiveBooleanStreakIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import java.util.function.Function; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/ConstantIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/ConstantIndicatorTest.java index 32e0209c..77f8259e 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/ConstantIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/ConstantIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/ConvergenceDivergenceIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/ConvergenceDivergenceIndicatorTest.java index 2a6262f4..75063926 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/ConvergenceDivergenceIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/ConvergenceDivergenceIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/CumulativeSumIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/CumulativeSumIndicatorTest.java index ad6eee6c..350beb25 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/CumulativeSumIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/CumulativeSumIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import java.util.function.Function; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/DateTimeIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/DateTimeIndicatorTest.java index db9ef698..20074242 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/DateTimeIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/DateTimeIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.indicators.helpers.DateTimeIndicator; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/DifferencePercentageIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/DifferencePercentageIndicatorTest.java index 42f8c9c3..1fccdc09 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/DifferencePercentageIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/DifferencePercentageIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/FixedIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/FixedIndicatorTest.java index 0b69ac5f..3022fe8a 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/FixedIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/FixedIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/GainIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/GainIndicatorTest.java index 4267040f..3d7ac892 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/GainIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/GainIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/HighPriceIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/HighPriceIndicatorTest.java index 638cfb7f..e1dd8a3e 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/HighPriceIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/HighPriceIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/HighestValueIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/HighestValueIndicatorTest.java index c643b05a..1affc64b 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/HighestValueIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/HighestValueIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/LossIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/LossIndicatorTest.java index c204b392..207757d9 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/LossIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/LossIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/LowPriceIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/LowPriceIndicatorTest.java index 50408a08..45b299a5 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/LowPriceIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/LowPriceIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/LowestValueIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/LowestValueIndicatorTest.java index 6640f641..500bf010 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/LowestValueIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/LowestValueIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/MaxCompareIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/MaxCompareIndicatorTest.java index 40828271..e8434d18 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/MaxCompareIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/MaxCompareIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/MedianPriceIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/MedianPriceIndicatorTest.java index eab8e8ee..33349504 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/MedianPriceIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/MedianPriceIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/MinCompareIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/MinCompareIndicatorTest.java index d0dd5f5a..4edd5443 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/MinCompareIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/MinCompareIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/OpenPriceIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/OpenPriceIndicatorTest.java index a0630a63..e9b7c7fa 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/OpenPriceIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/OpenPriceIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/PreviousValueIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/PreviousValueIndicatorTest.java index 067a04f6..491ca70e 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/PreviousValueIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/PreviousValueIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/PriceVariationIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/PriceVariationIndicatorTest.java index 2ac95b85..f2963765 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/PriceVariationIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/PriceVariationIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/SumIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/SumIndicatorTest.java index cccf1b6c..b55d9963 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/SumIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/SumIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/TRIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/TRIndicatorTest.java index 03e317f3..abb0736d 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/TRIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/TRIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/TradeCountIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/TradeCountIndicatorTest.java index 9e054dd5..1af16afb 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/TradeCountIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/TradeCountIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/TransformIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/TransformIndicatorTest.java index ffbb1593..bd364b0c 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/TransformIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/TransformIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/TypicalPriceIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/TypicalPriceIndicatorTest.java index 087e84df..0fbf5577 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/TypicalPriceIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/TypicalPriceIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/UnstableIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/UnstableIndicatorTest.java index 1d1e84e6..a5a71cf9 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/UnstableIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/UnstableIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.indicators.helpers.UnstableIndicator; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/VolumeIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/VolumeIndicatorTest.java index 21b3af09..108a7425 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/VolumeIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/helpers/VolumeIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/ichimoku/IchimokuChikouSpanIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/ichimoku/IchimokuChikouSpanIndicatorTest.java index 74fbc3b9..97eb230f 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/ichimoku/IchimokuChikouSpanIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/ichimoku/IchimokuChikouSpanIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.ichimoku; import static java.util.stream.Collectors.toList; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/ichimoku/IchimokuIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/ichimoku/IchimokuIndicatorTest.java index f89fca37..6204c2d1 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/ichimoku/IchimokuIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/ichimoku/IchimokuIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.ichimoku; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/keltner/KeltnerChannelFacadeTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/keltner/KeltnerChannelFacadeTest.java index 54bacca7..d4b73607 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/keltner/KeltnerChannelFacadeTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/keltner/KeltnerChannelFacadeTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.keltner; import org.junit.Before; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/keltner/KeltnerChannelLowerIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/keltner/KeltnerChannelLowerIndicatorTest.java index 4eec8bcc..439d5277 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/keltner/KeltnerChannelLowerIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/keltner/KeltnerChannelLowerIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.keltner; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/keltner/KeltnerChannelMiddleIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/keltner/KeltnerChannelMiddleIndicatorTest.java index c0968be2..1d624de9 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/keltner/KeltnerChannelMiddleIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/keltner/KeltnerChannelMiddleIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.keltner; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/keltner/KeltnerChannelUpperIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/keltner/KeltnerChannelUpperIndicatorTest.java index 2fa30152..4646fc92 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/keltner/KeltnerChannelUpperIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/keltner/KeltnerChannelUpperIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.keltner; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/numeric/NumericIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/numeric/NumericIndicatorTest.java index f9e40446..6381b4e1 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/numeric/NumericIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/numeric/NumericIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.numeric; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/pivotpoints/PivotPointIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/pivotpoints/PivotPointIndicatorTest.java index 78048867..0b3b316e 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/pivotpoints/PivotPointIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/pivotpoints/PivotPointIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.pivotpoints; import static junit.framework.TestCase.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/CorrelationCoefficientIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/CorrelationCoefficientIndicatorTest.java index 90aad9de..a3956b23 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/CorrelationCoefficientIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/CorrelationCoefficientIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import static org.junit.Assert.assertTrue; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/CovarianceIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/CovarianceIndicatorTest.java index 08fe7dc4..205a953d 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/CovarianceIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/CovarianceIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/MeanDeviationIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/MeanDeviationIndicatorTest.java index 275d17c0..88338e9a 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/MeanDeviationIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/MeanDeviationIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/PearsonCorrelationIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/PearsonCorrelationIndicatorTest.java index 2101e091..2c95000c 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/PearsonCorrelationIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/PearsonCorrelationIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/PeriodicalGrowthRateIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/PeriodicalGrowthRateIndicatorTest.java index 2300a465..c581317c 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/PeriodicalGrowthRateIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/PeriodicalGrowthRateIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/SigmaIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/SigmaIndicatorTest.java index 4f744c20..012863d7 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/SigmaIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/SigmaIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/SimpleLinearRegressionIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/SimpleLinearRegressionIndicatorTest.java index 263915f8..f3174fca 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/SimpleLinearRegressionIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/SimpleLinearRegressionIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import static org.junit.Assert.assertTrue; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/StandardDeviationIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/StandardDeviationIndicatorTest.java index 5aa518a3..b40a65dd 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/StandardDeviationIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/StandardDeviationIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/StandardErrorIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/StandardErrorIndicatorTest.java index e11d61ea..add7f1aa 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/StandardErrorIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/StandardErrorIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/VarianceIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/VarianceIndicatorTest.java index 549f5b55..2e9469b1 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/VarianceIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/statistics/VarianceIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.statistics; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/AccumulationDistributionIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/AccumulationDistributionIndicatorTest.java index 38027b05..5f8f71eb 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/AccumulationDistributionIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/AccumulationDistributionIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/ChaikinMoneyFlowIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/ChaikinMoneyFlowIndicatorTest.java index 88703251..a7885ff1 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/ChaikinMoneyFlowIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/ChaikinMoneyFlowIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/ChaikinOscillatorIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/ChaikinOscillatorIndicatorTest.java index 13524749..14befa43 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/ChaikinOscillatorIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/ChaikinOscillatorIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/IIIIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/IIIIndicatorTest.java index 1909f7c5..73da2495 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/IIIIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/IIIIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/MVWAPIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/MVWAPIndicatorTest.java index 96290387..35283085 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/MVWAPIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/MVWAPIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/NVIIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/NVIIndicatorTest.java index b5391839..e12456d6 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/NVIIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/NVIIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/OnBalanceVolumeIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/OnBalanceVolumeIndicatorTest.java index 3f316ff7..8c2202e3 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/OnBalanceVolumeIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/OnBalanceVolumeIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/PVIIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/PVIIndicatorTest.java index 00791663..fb4ce805 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/PVIIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/PVIIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/ROCVIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/ROCVIndicatorTest.java index 6f42928a..837a15f3 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/ROCVIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/ROCVIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/VWAPIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/VWAPIndicatorTest.java index d0c53fff..16eb4a99 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/VWAPIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/volume/VWAPIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.volume; import static org.ta4j.core.TestUtils.assertNumEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/vortex/MinusVITrendLineIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/vortex/MinusVITrendLineIndicatorTest.java index 59cf15a5..9f80a702 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/vortex/MinusVITrendLineIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/vortex/MinusVITrendLineIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.vortex; import java.math.RoundingMode; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/vortex/MinusVMIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/vortex/MinusVMIndicatorTest.java index dc7499d7..228cfd27 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/vortex/MinusVMIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/vortex/MinusVMIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.vortex; import java.time.Duration; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/vortex/PlusVITrendLineIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/vortex/PlusVITrendLineIndicatorTest.java index f938bf32..03784977 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/vortex/PlusVITrendLineIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/vortex/PlusVITrendLineIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.vortex; import java.math.RoundingMode; diff --git a/ta4j-core/src/test/java/org/ta4j/core/indicators/vortex/PlusVMIndicatorTest.java b/ta4j-core/src/test/java/org/ta4j/core/indicators/vortex/PlusVMIndicatorTest.java index da79b091..e1e5d66a 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/indicators/vortex/PlusVMIndicatorTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/indicators/vortex/PlusVMIndicatorTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.vortex; import java.time.Duration; diff --git a/ta4j-core/src/test/java/org/ta4j/core/mocks/MockAnalysisCriterion.java b/ta4j-core/src/test/java/org/ta4j/core/mocks/MockAnalysisCriterion.java index c349ea8e..a64cd383 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/mocks/MockAnalysisCriterion.java +++ b/ta4j-core/src/test/java/org/ta4j/core/mocks/MockAnalysisCriterion.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.mocks; import java.util.List; diff --git a/ta4j-core/src/test/java/org/ta4j/core/mocks/MockBarSeries.java b/ta4j-core/src/test/java/org/ta4j/core/mocks/MockBarSeries.java index e65b583e..6236b972 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/mocks/MockBarSeries.java +++ b/ta4j-core/src/test/java/org/ta4j/core/mocks/MockBarSeries.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.mocks; import java.time.ZonedDateTime; diff --git a/ta4j-core/src/test/java/org/ta4j/core/mocks/MockIndicator.java b/ta4j-core/src/test/java/org/ta4j/core/mocks/MockIndicator.java index 2f2698e5..73ea53c3 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/mocks/MockIndicator.java +++ b/ta4j-core/src/test/java/org/ta4j/core/mocks/MockIndicator.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.mocks; import java.util.List; diff --git a/ta4j-core/src/test/java/org/ta4j/core/mocks/MockTradingRecord.java b/ta4j-core/src/test/java/org/ta4j/core/mocks/MockTradingRecord.java index c019e1c0..a7005c7d 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/mocks/MockTradingRecord.java +++ b/ta4j-core/src/test/java/org/ta4j/core/mocks/MockTradingRecord.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.mocks; import java.util.List; diff --git a/ta4j-core/src/test/java/org/ta4j/core/num/DecimalNumTest.java b/ta4j-core/src/test/java/org/ta4j/core/num/DecimalNumTest.java index cbfb5c52..51a860fb 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/num/DecimalNumTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/num/DecimalNumTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.num; import static org.junit.Assert.assertEquals; diff --git a/ta4j-core/src/test/java/org/ta4j/core/num/DoubleNumTest.java b/ta4j-core/src/test/java/org/ta4j/core/num/DoubleNumTest.java index 26ad4ea2..bbd072d2 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/num/DoubleNumTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/num/DoubleNumTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.num; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/ATRStopGainRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/ATRStopGainRuleTest.java index 19f23df0..bf465904 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/ATRStopGainRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/ATRStopGainRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import java.time.Duration; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/AbsoluteValueOverRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/AbsoluteValueOverRuleTest.java index 03f5eb96..3d724291 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/AbsoluteValueOverRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/AbsoluteValueOverRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/AbsoluteValueUnderRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/AbsoluteValueUnderRuleTest.java index 37670dba..980b6b95 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/AbsoluteValueUnderRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/AbsoluteValueUnderRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/AndRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/AndRuleTest.java index 12c7225c..97135b68 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/AndRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/AndRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/BooleanIndicatorRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/BooleanIndicatorRuleTest.java index 3330135f..9235e2f9 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/BooleanIndicatorRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/BooleanIndicatorRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/BooleanRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/BooleanRuleTest.java index f1fd8d0e..4f246c43 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/BooleanRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/BooleanRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/ChainRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/ChainRuleTest.java index 5faa11fe..8b346633 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/ChainRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/ChainRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/CrossedDownIndicatorRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/CrossedDownIndicatorRuleTest.java index 999adee0..2bbe3c96 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/CrossedDownIndicatorRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/CrossedDownIndicatorRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/CrossedUpIndicatorRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/CrossedUpIndicatorRuleTest.java index e2cba028..686901ea 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/CrossedUpIndicatorRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/CrossedUpIndicatorRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/DayOfWeekRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/DayOfWeekRuleTest.java index 94776215..cd62a900 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/DayOfWeekRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/DayOfWeekRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/DollarStopGainRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/DollarStopGainRuleTest.java index f9b88dce..2b4cb35e 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/DollarStopGainRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/DollarStopGainRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import java.time.ZonedDateTime; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/DollarStopLossRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/DollarStopLossRuleTest.java index ca9c02cd..72d812ac 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/DollarStopLossRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/DollarStopLossRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import java.time.ZonedDateTime; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/FixedRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/FixedRuleTest.java index 2ee8e719..aedae536 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/FixedRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/FixedRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/FlipFlopRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/FlipFlopRuleTest.java index b296bc6d..286316e1 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/FlipFlopRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/FlipFlopRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/InPipeRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/InPipeRuleTest.java index c007f9a9..23ee2026 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/InPipeRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/InPipeRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/InSlopeRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/InSlopeRuleTest.java index 4c1c7e3c..fd24ab8e 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/InSlopeRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/InSlopeRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/IsEqualRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/IsEqualRuleTest.java index 075f1602..8f489f69 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/IsEqualRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/IsEqualRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/IsFallingRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/IsFallingRuleTest.java index 1ad6f29a..ef997414 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/IsFallingRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/IsFallingRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/IsHighestRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/IsHighestRuleTest.java index 97b541fb..507a4620 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/IsHighestRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/IsHighestRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/IsLowestRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/IsLowestRuleTest.java index 5eb0282e..5d160ad9 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/IsLowestRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/IsLowestRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/IsRisingRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/IsRisingRuleTest.java index 26027c44..73d91ebf 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/IsRisingRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/IsRisingRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/JustOnceRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/JustOnceRuleTest.java index 7fff2b78..f249f569 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/JustOnceRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/JustOnceRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/ModulusIndexRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/ModulusIndexRuleTest.java index 5c586a65..a1191943 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/ModulusIndexRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/ModulusIndexRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/NotRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/NotRuleTest.java index 3d2cdac0..8524e6ad 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/NotRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/NotRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/OpenedPositionMinimumBarCountRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/OpenedPositionMinimumBarCountRuleTest.java index f12eecea..f4a47a2f 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/OpenedPositionMinimumBarCountRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/OpenedPositionMinimumBarCountRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/OpenedPositionMinimumProfitableBarCountRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/OpenedPositionMinimumProfitableBarCountRuleTest.java index ee73580c..6cacbd17 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/OpenedPositionMinimumProfitableBarCountRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/OpenedPositionMinimumProfitableBarCountRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import java.time.ZonedDateTime; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/OrRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/OrRuleTest.java index 9819865e..4ca80461 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/OrRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/OrRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/OverIndicatorRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/OverIndicatorRuleTest.java index b7744afa..15bfb0b7 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/OverIndicatorRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/OverIndicatorRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/PercentageOverLastBuyPriceRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/PercentageOverLastBuyPriceRuleTest.java index ada5eb61..50280cf5 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/PercentageOverLastBuyPriceRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/PercentageOverLastBuyPriceRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import java.time.ZonedDateTime; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/PercentageOverRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/PercentageOverRuleTest.java index 9f8bd8af..f8588fbf 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/PercentageOverRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/PercentageOverRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/PercentageUnderLastBuyPriceRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/PercentageUnderLastBuyPriceRuleTest.java index 2f8c4d10..93c45ab3 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/PercentageUnderLastBuyPriceRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/PercentageUnderLastBuyPriceRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import java.time.ZonedDateTime; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/PercentageUnderRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/PercentageUnderRuleTest.java index 72946d6d..ceae1e08 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/PercentageUnderRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/PercentageUnderRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/StopGainRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/StopGainRuleTest.java index 3815bceb..ee3c0b19 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/StopGainRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/StopGainRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import java.time.ZonedDateTime; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/StopLossRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/StopLossRuleTest.java index c18ac56e..7258558a 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/StopLossRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/StopLossRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import java.time.ZonedDateTime; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/TimeRangeRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/TimeRangeRuleTest.java index 0ad1d3c0..b68b8555 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/TimeRangeRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/TimeRangeRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/TrailingStopGainRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/TrailingStopGainRuleTest.java index 0df19038..cc8dc0bc 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/TrailingStopGainRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/TrailingStopGainRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /* The MIT License (MIT) diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/TrailingStopLossRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/TrailingStopLossRuleTest.java index 83a50626..4490ea07 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/TrailingStopLossRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/TrailingStopLossRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + /* The MIT License (MIT) diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/UnderIndicatorRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/UnderIndicatorRuleTest.java index a0147bbc..6e05a604 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/UnderIndicatorRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/UnderIndicatorRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/WaitForRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/WaitForRuleTest.java index 07e6bf6b..64a1c04d 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/WaitForRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/WaitForRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/rules/XorRuleTest.java b/ta4j-core/src/test/java/org/ta4j/core/rules/XorRuleTest.java index e939c733..3ac31c1d 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/rules/XorRuleTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/rules/XorRuleTest.java @@ -21,20 +21,7 @@ * 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. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.rules; import static org.junit.Assert.assertFalse; diff --git a/ta4j-core/src/test/java/org/ta4j/core/utils/BarSeriesUtilsTest.java b/ta4j-core/src/test/java/org/ta4j/core/utils/BarSeriesUtilsTest.java index d990d599..f56bac21 100644 --- a/ta4j-core/src/test/java/org/ta4j/core/utils/BarSeriesUtilsTest.java +++ b/ta4j-core/src/test/java/org/ta4j/core/utils/BarSeriesUtilsTest.java @@ -176,8 +176,7 @@ public void convertBarSeriesTest() { final BarSeries decimalToDoubleSeries = BarSeriesUtils.convertBarSeries(decimalBarSeries, doubleNum); // convert barSeries with DoubleNum to barSeries with DecimalNum - final BarSeries doubleToDecimalSeries = BarSeriesUtils.convertBarSeries(decimalToDoubleSeries, - decimalNum); + final BarSeries doubleToDecimalSeries = BarSeriesUtils.convertBarSeries(decimalToDoubleSeries, decimalNum); // convert barSeries with DoubleNum to barSeries with NaNNum final BarSeries doubleToNaNSeries = BarSeriesUtils.convertBarSeries(decimalToDoubleSeries, nanNum); From c9a31873cb0eefa1a78aaf6ba7d829a3485cda73 Mon Sep 17 00:00:00 2001 From: David Pang Date: Mon, 23 Sep 2024 11:58:05 -0400 Subject: [PATCH 2/2] converted to new api --- .../barSeries/BuildBarSeries.java | 38 +++++++++---------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/ta4j-examples/src/main/java/ta4jexamples/barSeries/BuildBarSeries.java b/ta4j-examples/src/main/java/ta4jexamples/barSeries/BuildBarSeries.java index a23ba05e..7421fdb5 100644 --- a/ta4j-examples/src/main/java/ta4jexamples/barSeries/BuildBarSeries.java +++ b/ta4j-examples/src/main/java/ta4jexamples/barSeries/BuildBarSeries.java @@ -40,8 +40,8 @@ public class BuildBarSeries { /** - * Calls different functions that shows how a BaseBarSeries could be created and - * how Bars could be added + * Calls different functions that shows how a BaseBarSeries could be created + * and how Bars could be added * * @param args command line arguments (ignored) */ @@ -49,7 +49,7 @@ public class BuildBarSeries { public static void main(String[] args) { BarSeries a = buildAndAddData(); System.out.println("a: " + a.getBar(0).getClosePrice().getName()); - BaseBarSeriesBuilder.setDefaultFunction(DoubleNum::valueOf); + BaseBarSeriesBuilder.setDefaultNum(DoubleNum::valueOf); a = buildAndAddData(); System.out.println("a: " + a.getBar(0).getClosePrice().getName()); BarSeries b = buildWithDouble(); @@ -60,12 +60,12 @@ public static void main(String[] args) { BarSeries g = buildAndAddBarsFromList(); // Fix: Reset default function, such that this test case does not influence the // following test cases in a combined test run - BaseBarSeriesBuilder.setDefaultFunction(DecimalNum::valueOf); + BaseBarSeriesBuilder.setDefaultNum(DecimalNum::valueOf); } - + private static BarSeries buildAndAddData() { BarSeries series = new BaseBarSeriesBuilder().withName("mySeries").build(); - + ZonedDateTime endTime = ZonedDateTime.now(); series.addBar(endTime, 105.42, 112.99, 104.01, 111.42, 1337); series.addBar(endTime.plusDays(1), 111.43, 112.83, 107.77, 107.99, 1234); @@ -73,10 +73,10 @@ private static BarSeries buildAndAddData() { // ... return series; } - + private static BarSeries buildWithDouble() { BarSeries series = new BaseBarSeriesBuilder().withName("mySeries").withNumTypeOf(DoubleNum.class).build(); - + ZonedDateTime endTime = ZonedDateTime.now(); series.addBar(endTime, 105.42, 112.99, 104.01, 111.42, 1337); series.addBar(endTime.plusDays(1), 111.43, 112.83, 107.77, 107.99, 1234); @@ -85,10 +85,10 @@ private static BarSeries buildWithDouble() { return series; } - + private static BarSeries buildWithBigDecimal() { BarSeries series = new BaseBarSeriesBuilder().withName("mySeries").withNumTypeOf(DecimalNum.class).build(); - + ZonedDateTime endTime = ZonedDateTime.now(); series.addBar(endTime, 105.42, 112.99, 104.01, 111.42, 1337); series.addBar(endTime.plusDays(1), 111.43, 112.83, 107.77, 107.99, 1234); @@ -97,7 +97,7 @@ private static BarSeries buildWithBigDecimal() { return series; } - + private static BarSeries buildManually() { BarSeries series = new BaseBarSeries("mySeries"); // uses BigDecimalNum @@ -109,9 +109,9 @@ private static BarSeries buildManually() { return series; } - + private static BarSeries buildManuallyDoubleNum() { - BarSeries series = new BaseBarSeries("mySeries", DoubleNum::valueOf); // uses DoubleNum + BarSeries series = new BaseBarSeries("mySeries", DoubleNum.ZERO); // uses DoubleNum ZonedDateTime endTime = ZonedDateTime.now(); series.addBar(endTime, 105.42, 112.99, 104.01, 111.42, 1337); series.addBar(endTime.plusDays(1), 111.43, 112.83, 107.77, 107.99, 1234); @@ -120,9 +120,9 @@ private static BarSeries buildManuallyDoubleNum() { return series; } - + private static BarSeries buildManuallyAndAddBarManually() { - BarSeries series = new BaseBarSeries("mySeries", DoubleNum::valueOf); // uses DoubleNum + BarSeries series = new BaseBarSeries("mySeries", DoubleNum.ZERO); // uses DoubleNum // create bars and add them to the series. The bars must have the same Num type // as the series @@ -159,10 +159,10 @@ private static BarSeries buildManuallyAndAddBarManually() { series.addBar(b1); series.addBar(b2); series.addBar(b3); - + return series; } - + private static BarSeries buildAndAddBarsFromList() { // Store Bars in a list and add them later. The bars must have the same Num type // as the series @@ -192,14 +192,14 @@ private static BarSeries buildAndAddBarsFromList() { .volume("4242") .build(); List bars = Arrays.asList(b1, b2, b3); - + return new BaseBarSeriesBuilder().withName("mySeries") .withNumTypeOf(DoubleNum::valueOf) .withMaxBarCount(5) .withBars(bars) .build(); } - + private static ConvertibleBaseBarBuilder barBuilderFromString() { return BaseBar.builder(DoubleNum::valueOf, String.class); }