nimo23
nimo23
Is it good idea to use something like - https://www.baeldung.com/commons-circular-fifo-queue (or build similar like mentioned in https://github.com/ta4j/ta4j/pull/817#issuecomment-1013649165) for our caching layers (`BaseBarSeries`, `CachedIndicator`,.)? Currently, the oldest data will remove and...
Changes proposed in this pull request: - inlcude endIndex within loop of calculate() - [x] added an entry with related ticket number(s) to the unreleased section of `CHANGES.md`
Changes proposed in this pull request: - added `TradingRecord#getStartIndex()` to track the start of the recording - added `TradingRecord#getEndIndex()` to track the end of the recording - (includes some minor...
Replaces https://github.com/ta4j/ta4j/pull/749 Changes proposed in this pull request: - Added `NumberOfConsecutivePositionsCriterion` (replaces the former `NumberOfConsecutiveWinningPositionsCriterion`) - added `AnalysisCriterion.PositionFilter` to handle both sides within one Criterion. - [x] added an entry...
Fixes #. Changes proposed in this pull request: - :tada: **Enhancement** added **`WaitForRule#noWaitIfNoTradeExists`** (i.e. no need to wait if no trade exists). - [x] added an entry with related ticket...
What do you think to rename the (very often used) method: - Num#multipliedBy to - Num#multiply We use it all over the places and it has only benefits (less keystrokes,...
The following criteria has vague class names: - `AverageLossCriterion` (is a Gross value) - `AverageProfitCriterion` (is a Gross value) - `ProfitLossCriterion` (is a Net value) - `ProfitLossPercentageCriterion` (is a Net...
Changes proposed in this pull request: - **NumberOfWinningPositionsCriterion** removed in favour of **NumberOfPositionsCriterion** - **NumberOfLosingPositionsCriterion** removed in favour of **NumberOfPositionsCriterion** - **WinningPositionsRatioCriterion** removed in favour of **PositionsRatioCriterion** - **LosingPositionsRatioCriterion** removed...
Changes proposed in this pull request: - If `finishIndex` is set, then closing the last position should **NOT** be possible, if it happens after finishIndex. - [ ] added an...
The TrailingStopLossRule has the following property which is not used: ``` /** * the current price extremum */ private Num currentExtremum = null; ``` Should it be removed or has...