├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── indicators.gemspec ├── lib ├── indicators.rb └── indicators │ ├── calculations │ ├── bb.rb │ ├── ema.rb │ ├── helper.rb │ ├── macd.rb │ ├── rsi.rb │ ├── sma.rb │ └── sto.rb │ ├── data.rb │ ├── main.rb │ ├── parser.rb │ └── version.rb └── spec ├── data_spec.rb ├── helper_spec.rb ├── main_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format progress 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/Rakefile -------------------------------------------------------------------------------- /indicators.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/indicators.gemspec -------------------------------------------------------------------------------- /lib/indicators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/lib/indicators.rb -------------------------------------------------------------------------------- /lib/indicators/calculations/bb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/lib/indicators/calculations/bb.rb -------------------------------------------------------------------------------- /lib/indicators/calculations/ema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/lib/indicators/calculations/ema.rb -------------------------------------------------------------------------------- /lib/indicators/calculations/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/lib/indicators/calculations/helper.rb -------------------------------------------------------------------------------- /lib/indicators/calculations/macd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/lib/indicators/calculations/macd.rb -------------------------------------------------------------------------------- /lib/indicators/calculations/rsi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/lib/indicators/calculations/rsi.rb -------------------------------------------------------------------------------- /lib/indicators/calculations/sma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/lib/indicators/calculations/sma.rb -------------------------------------------------------------------------------- /lib/indicators/calculations/sto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/lib/indicators/calculations/sto.rb -------------------------------------------------------------------------------- /lib/indicators/data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/lib/indicators/data.rb -------------------------------------------------------------------------------- /lib/indicators/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/lib/indicators/main.rb -------------------------------------------------------------------------------- /lib/indicators/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/lib/indicators/parser.rb -------------------------------------------------------------------------------- /lib/indicators/version.rb: -------------------------------------------------------------------------------- 1 | module Indicators 2 | VERSION = "1.0.3" 3 | end 4 | -------------------------------------------------------------------------------- /spec/data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/spec/data_spec.rb -------------------------------------------------------------------------------- /spec/helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/spec/helper_spec.rb -------------------------------------------------------------------------------- /spec/main_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/spec/main_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/indicators/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------