- Update PriceChannel to include #valid?
- Previously an indicator was called on an array, e.g.
[0,1,2,3].mean
- Now all indicators are first class, e.g.
RubyTechnicalAnalysis::StatisticalMethods.new(series: [0, 1, 2, 3]).mean
- See examples on GH, yard docs, and specs for more examples and information
- Initial release