Class: TechnicalAnalysis::Adx
- Defined in:
- lib/technical_analysis/indicators/adx.rb
Overview
Average Direcitonal Index
Defined Under Namespace
Classes: AdxValue
Class Method Summary collapse
-
.calculate(data, period: 14) ⇒ Array<AdxValue>
Calculates the average directional index (ADX) for the data over the given period en.wikipedia.org/wiki/Average_directional_movement_index.
-
.indicator_name ⇒ String
Returns the name of the technical indicator.
-
.indicator_symbol ⇒ String
Returns the symbol of the technical indicator.
-
.min_data_size(period: 14) ⇒ 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, period: 14) ⇒ Array<AdxValue>
Calculates the average directional index (ADX) for the data over the given period en.wikipedia.org/wiki/Average_directional_movement_index
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
# File 'lib/technical_analysis/indicators/adx.rb', line 52 def self.calculate(data, period: 14) period = period.to_i Validation.validate_numeric_data(data, :high, :low, :close) Validation.validate_length(data, min_data_size(period: period)) Validation.validate_date_time_key(data) data = data.sort_by { |row| row[:date_time] } dx_values = [] output = [] periodic_values = [] prev_adx = nil prev_price = data.shift smoothed_values = [] data.each do |v| tr = StockCalculation.true_range(v[:high], v[:low], prev_price[:close]) dm_pos, dm_neg = calculate_dm(v, prev_price) periodic_values << { tr: tr, dm_pos: dm_pos, dm_neg: dm_neg } if periodic_values.size == period tr_period, dm_pos_period, dm_neg_period = smooth_periodic_values(period, periodic_values, smoothed_values) smoothed_values << { tr: tr_period, dm_pos: dm_pos_period, dm_neg: dm_neg_period } di_pos = (dm_pos_period / tr_period) * 100.00 di_neg = (dm_neg_period / tr_period) * 100.00 dx = ((dm_pos_period - dm_neg_period).abs / (dm_pos_period + dm_neg_period) * 100.00) dx_values << dx if dx_values.size == period if prev_adx.nil? adx = ArrayHelper.average(dx_values) else adx = ((prev_adx * (period - 1)) + dx) / period.to_f end output << AdxValue.new(date_time: v[:date_time], adx: adx, di_pos: di_pos, di_neg: di_neg) prev_adx = adx dx_values.shift end periodic_values.shift end prev_price = v 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/adx.rb', line 15 def self.indicator_name "Average Directional Index" end |
.indicator_symbol ⇒ String
Returns the symbol of the technical indicator
8 9 10 |
# File 'lib/technical_analysis/indicators/adx.rb', line 8 def self.indicator_symbol "adx" end |
.min_data_size(period: 14) ⇒ Integer
Calculates the minimum number of observations needed to calculate the technical indicator
41 42 43 |
# File 'lib/technical_analysis/indicators/adx.rb', line 41 def self.min_data_size(period: 14) period.to_i * 2 end |
.valid_options ⇒ Array
Returns an array of valid keys for options for this technical indicator
22 23 24 |
# File 'lib/technical_analysis/indicators/adx.rb', line 22 def self. %i(period) end |
.validate_options(options) ⇒ Boolean
Validates the provided options for this technical indicator
31 32 33 |
# File 'lib/technical_analysis/indicators/adx.rb', line 31 def self.() Validation.(, ) end |