This repository has been archived by the owner on Feb 15, 2022. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix up/downtrend thresholds MACD (#223)
* Fix up/downtrend thresholds The thresholds were only reacting on the first period of the MACD trend. After this they did not respond as the last period was already positive or negative. With this it will take the threshold in consideration as well. * Uniform/Clear conditions conditionis in the form of: if (a - t > 0 && b - t <= 0) / if (a + t < 0 && b + t >= 0)
- Loading branch information