- Indicators with name starting with A;
- `Maximum`. `Minimum` and `MACD`;
- Adds new unit test method to `CommonIndicatorTests`: `WarmsUpProperly`;
- Indicators unit tests inherit from `CommonIndicatorTests`.
Add the following methods corresponding unit tests to QuantConnect.IndicatorExtensions:
*EMA()
*MAX()
*MIN()
*SMA()
Add method to calculate default smoothing value for an EMA indicator
Updated the Maximum Indicator with the suggested changes.
Updated the Minimum Indicator with the suggested changes.
Added the Slow Stochastic Indicator with given test case (looking to
improve the structure of the indicator).