Class: TechnicalAnalysis::Dr
- Defined in:
- lib/technical_analysis/indicators/dr.rb
Overview
Daily Return
Class Method Summary collapse
-
.calculate(data, price_key: :value) ⇒ Array<DrValue>
Calculates the daily return (percent expressed as a decimal) for the data over the given period en.wikipedia.org/wiki/Rate_of_return.
-
.indicator_name ⇒ String
Returns the name of the technical indicator.
-
.indicator_symbol ⇒ String
Returns the symbol of the technical indicator.
-
.min_data_size(**params) ⇒ Integer
Calculates the minimum number of observations needed to calculate the technical indicator.
-
.valid_options ⇒ Array
Returns an array of valid keys for options for this technical indicator.
-
.validate_options(options) ⇒ Boolean
Validates the provided options for this technical indicator.
Methods inherited from Indicator
Class Method Details
.calculate(data, price_key: :value) ⇒ Array<DrValue>
Calculates the daily return (percent expressed as a decimal) for the data over the given period en.wikipedia.org/wiki/Rate_of_return
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/technical_analysis/indicators/dr.rb', line 52 def self.calculate(data, price_key: :value) price_key = price_key.to_sym Validation.validate_numeric_data(data, price_key) Validation.validate_length(data, min_data_size({})) Validation.validate_date_time_key(data) data = data.sort_by { |row| row[:date_time] } output = [] prev_price = data.first[price_key].to_f data.each do |v| current_price = v[:close].to_f output << DrValue.new(date_time: v[:date_time], dr: ((current_price / prev_price) - 1)) prev_price = current_price end output.sort_by(&:date_time).reverse end |
.indicator_name ⇒ String
Returns the name of the technical indicator
15 16 17 |
# File 'lib/technical_analysis/indicators/dr.rb', line 15 def self.indicator_name "Daily Return" end |
.indicator_symbol ⇒ String
Returns the symbol of the technical indicator
8 9 10 |
# File 'lib/technical_analysis/indicators/dr.rb', line 8 def self.indicator_symbol "dr" end |
.min_data_size(**params) ⇒ Integer
Calculates the minimum number of observations needed to calculate the technical indicator
41 42 43 |
# File 'lib/technical_analysis/indicators/dr.rb', line 41 def self.min_data_size(**params) 1 end |
.valid_options ⇒ Array
Returns an array of valid keys for options for this technical indicator
22 23 24 |
# File 'lib/technical_analysis/indicators/dr.rb', line 22 def self. %i(price_key) end |
.validate_options(options) ⇒ Boolean
Validates the provided options for this technical indicator
31 32 33 |
# File 'lib/technical_analysis/indicators/dr.rb', line 31 def self.() Validation.(, ) end |