cotcube-bardata 0.1.6 → 0.1.9.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 241ac82617b49386e5ab3b2291a0d5a0e6f6f792a1184ad5956ec5eedce56d5e
4
- data.tar.gz: a70bb34fe89fdc62138e2efbb8dcc7119f5e07d58672c4c9bb6923da95ab1bd1
3
+ metadata.gz: 4bf0d80a7c81bd75a4d9ca26c5571a57938a73fdfd47543ab82e9ea93f42e3f0
4
+ data.tar.gz: 9c53d62b2fbcb17700a2f1f4c08586ed218098ad80a9247b6b839486d46829ce
5
5
  SHA512:
6
- metadata.gz: 5e80e2f64b55ea2df59ca62d2407ea7d534568d0bcdbd75eed6c0df233fc16f9e9c0651213f0d53401a9ac336eb4fb4e4325d874fb299ce8ba01dee53c7d25d0
7
- data.tar.gz: 875c0bcca1eab089286a7ecb94979db433d15d6cb5c4a45fccc46695615da632aa48f68ae3119a908287f127cee0dd93f24319e02d45103148eb7acdad992de8
6
+ metadata.gz: ac6600a7a6f7791df53e631e49f3a4f56e8f2c95801b699dd06510f0b072f7a20d22a8edefbc2b53ef183954c4c13e0889442af2b06911e1ddd3c339217daa3b
7
+ data.tar.gz: c30e7df2409407c08433baf345660d1dcaeb24b85a035bc2344d2c401303b0961b7dcf901d6e2c5f98f34f273228df2588a8fd83a4e50b0fbbff61d4b541c7c3
data/CHANGELOG.md CHANGED
@@ -1,3 +1,25 @@
1
+ ## 0.1.9.3 (February 08, 2021)
2
+ - cached: minor change fixing problem to get yesterday in rth subsets
3
+
4
+ ## 0.1.9.2 (February 07, 2021)
5
+ - minor changes
6
+ - daily#continuous_table: introducing debuglevel
7
+
8
+ ## 0.1.9.1 (January 29, 2021)
9
+ - provide: added new interval 'synth', mixing available dailies with synthetic days based on quarters
10
+ - minor change / cleanup
11
+ - setting gemspec to use rake 13 and changing version spec to overcome warnings
12
+
13
+ ## 0.1.8 (January 27, 2021)
14
+ - in helpers, #extended_range_for_date: fixed comparison signs
15
+ - range_matrix: applied cops, noted appearance of Cotcube::Helpers.simple_series_stats
16
+ - cached: Fixing wrong comparison sign
17
+ - daily: slimmed down results for #continuous_overview
18
+
19
+ ## 0.1.7 (January 14, 2021)
20
+ - added :range parameter to :provide, hence to :provide_cached, :provide_daily
21
+ - added forgotten module_functions
22
+
1
23
  ## 0.1.6 (January 07, 2021)
2
24
  - prefering datetime instead date (in helpers and daily)
3
25
  - changed keyword :set to :filter in cached, provide and trading_hours
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.6
1
+ 0.1.9.3
@@ -34,7 +34,8 @@ Gem::Specification.new do |spec|
34
34
  spec.add_dependency 'parallel', '~> 1'
35
35
  spec.add_dependency 'yaml', '~> 0.1'
36
36
 
37
- spec.add_development_dependency 'rake', '>= 12'
37
+ # using ~> in favor of >= to overcome warning
38
+ spec.add_development_dependency 'rake', '~> 13'
38
39
  spec.add_development_dependency 'rspec', '~>3.6'
39
- spec.add_development_dependency 'yard', '~>0.9'
40
+ spec.add_development_dependency 'yard', '~>0.9'
40
41
  end
@@ -52,6 +52,8 @@ module Cotcube
52
52
  :continuous_actual_ml,
53
53
  # based on continuous, create list of when which contract was most liquid
54
54
  :continuous_overview,
55
+ # provider estimation of current ML usability
56
+ :continuous_table,
55
57
  # provide the list of quarters, possibly as hours or days.
56
58
  :provide_quarters,
57
59
  # some statistics to estimate daily volatility of specific contract
@@ -60,6 +62,8 @@ module Cotcube
60
62
  :trading_hours,
61
63
  # receive id / symbol information on an uncertain set of parameters
62
64
  :get_id_set,
65
+ :select_specific_date,
66
+ :extended_select_for_range,
63
67
  :provide_cached,
64
68
  :compare,
65
69
  :holidays,
@@ -6,12 +6,29 @@ module Cotcube
6
6
  # send pre-created days based on quarters
7
7
  def provide_cached(contract:, # rubocop:disable Metrics/ParameterLists
8
8
  symbol: nil, id: nil,
9
+ range: nil,
9
10
  config: init,
11
+ debug: false,
10
12
  timezone: Time.find_zone('America/Chicago'),
11
13
  filter: :full, # most probably either :full or :rth
12
14
  force_update: false, # force reloading via provide_quarters
13
15
  force_recent: false) #
14
16
 
17
+ unless range.nil? ||
18
+ range.is_a?(Range) &&
19
+ [Date, DateTime, ActiveSupport::TimeWithZone].map do |cl|
20
+ (range.begin.nil? || range.begin.is_a?(cl)) &&
21
+ (range.end.nil? || range.end.is_a?(cl))
22
+ end.reduce(:|)
23
+ raise ArgumentError, 'Range, if given, must be either (Integer..Integer) or (Timelike..Timelike)'
24
+ end
25
+
26
+ unless range.nil?
27
+ range_begin = range.begin.nil? ? nil : timezone.parse(range.begin.to_s)
28
+ range_end = range.end.nil? ? nil : timezone.parse(range.end.to_s)
29
+ range = (range_begin..range_end)
30
+ end
31
+
15
32
  headers = %i[contract datetime open high low close volume]
16
33
  sym = get_id_set(symbol: symbol, id: id, contract: contract)
17
34
  contract = contract[-3..]
@@ -33,18 +50,40 @@ module Cotcube
33
50
  if base.last[:high].zero?
34
51
  # contract exists but is closed (has the CLOSED marker)
35
52
  base.pop
36
- return base
37
- elsif File.mtime(file) < File.mtime(quarters_file)
38
- return base
53
+ # rubocop:disable Metrics/BlockNesting
54
+ result = if range.nil?
55
+ base
56
+ else
57
+ base.select do |x|
58
+ (range.begin.nil? ? true : x[:datetime] >= range.begin) and
59
+ (range.end.nil? ? true : x[:datetime] <= range.end)
60
+ end
61
+ end
62
+ return result
63
+ elsif File.mtime(file) + 1.day > File.mtime(quarters_file)
64
+ puts "CACHE #{File.mtime(file)}\t#{file}" if debug
65
+ puts "QUART #{File.mtime(quarters_file)}\t#{quarters_file}" if debug
66
+ result = if range.nil?
67
+ base
68
+ else
69
+ base.select do |x|
70
+ (range.begin.nil? ? true : x[:datetime] >= range.begin) and
71
+ (range.end.nil? ? true : x[:datetime] <= range.end)
72
+ end
73
+ end
74
+ # rubocop:enable Metrics/BlockNesting
75
+ return result
39
76
  else
40
- puts "File #{file} exists, but is neither closed nor current. Running update.".colorize(:light_green)
77
+ # write a (positive warning, that the cache needs to be updated, as cached value is older
78
+ # than one day but not closed
79
+ puts "File #{file} exists, but is neither closed nor current. Running update...".colorize(:light_green)
41
80
  end
42
81
  end
43
82
  begin
44
83
  data = provide_quarters(contract: contract, id: sym[:id], keep_marker: true)
45
84
  rescue StandardError
46
85
  puts "Cannot provide quarters for requested contract #{sym[:symbol]}:#{contract},"\
47
- "returning '[ ]'".colorize(:light_red)
86
+ "returning '[ ]'".colorize(:light_red)
48
87
  return []
49
88
  end
50
89
 
@@ -59,21 +98,28 @@ module Cotcube
59
98
  base = Cotcube::Helpers.reduce(bars: data, to: :days)
60
99
 
61
100
  # remove last day of result unless marked
62
- base.pop unless contract_is_marked || force_recent
101
+ base.pop if base.last[:datetime].to_date == timezone.now.to_date and not force_recent
63
102
 
64
103
  base.map do |x|
65
- x[:datetime] = x[:datetime].to_date
104
+ x[:date] = x[:datetime].to_date
66
105
  x[:type] = "#{filter}_day".to_sym
67
106
  x.delete(:day)
68
107
  end
69
108
  CSV.open(file, 'w') do |csv|
70
109
  base.each { |b| csv << b.values_at(*headers) }
71
110
  if contract_is_marked
72
- marker = ["#{sym[:symbol]}#{contract}", base.last[:datetime] + 1.day, 0, 0, 0, 0, 0]
111
+ marker = ["#{sym[:symbol]}#{contract}", base.last[:date] + 1.day, 0, 0, 0, 0, 0]
73
112
  csv << marker
74
113
  end
75
114
  end
76
- base
115
+ if range.nil?
116
+ base
117
+ else
118
+ base.select do |x|
119
+ (range.begin.nil? ? true : x[:date] >= range.begin) and
120
+ (range.end.nil? ? true : x[:date] <= range.end)
121
+ end
122
+ end
77
123
  end
78
124
  end
79
125
  end
@@ -4,14 +4,30 @@ module Cotcube
4
4
  # Missing top level documentation comment
5
5
  module Bardata
6
6
  # just reads bardata/daily/<id>/<contract>.csv
7
- def provide_daily(contract:,
7
+ def provide_daily(contract:, # rubocop:disable Metrics/ParameterLists
8
8
  symbol: nil, id: nil,
9
+ range: nil,
9
10
  timezone: Time.find_zone('America/Chicago'),
10
11
  config: init)
11
12
  contract = contract.to_s.upcase
12
13
  unless contract.is_a?(String) && [3, 5].include?(contract.size)
13
14
  raise ArgumentError, "Contract '#{contract}' is bogus, should be like 'M21' or 'ESM21'"
14
15
  end
16
+ unless range.nil? ||
17
+ (range.is_a?(Range) &&
18
+ [Date, DateTime, ActiveSupport::TimeWithZone].map do |cl|
19
+ (range.begin.nil? || range.begin.is_a?(cl)) &&
20
+ (range.end.nil? || range.end.is_a?(cl))
21
+ end.reduce(:|))
22
+
23
+ raise ArgumentError, 'Range, if given, must be either (Integer..Integer) or (Timelike..Timelike)'
24
+ end
25
+
26
+ unless range.nil?
27
+ range_begin = range.begin.nil? ? nil : timezone.parse(range.begin.to_s)
28
+ range_end = range.end.nil? ? nil : timezone.parse(range.end.to_s)
29
+ range = (range_begin..range_end)
30
+ end
15
31
 
16
32
  sym = get_id_set(symbol: symbol, id: id, contract: contract)
17
33
  contract = contract[2..4] if contract.to_s.size == 5
@@ -33,7 +49,14 @@ module Cotcube
33
49
  row
34
50
  end
35
51
  data.pop if data.last[:high].zero?
36
- data
52
+ if range.nil?
53
+ data
54
+ else
55
+ data.select do |x|
56
+ (range.begin.nil? ? true : x[:datetime] >= range.begin) and
57
+ (range.end.nil? ? true : x[:datetime] <= range.end)
58
+ end
59
+ end
37
60
  end
38
61
 
39
62
  # reads all files in bardata/daily/<id> and aggregates by date
@@ -109,6 +132,13 @@ module Cotcube
109
132
  end
110
133
  data.reject! { |x| x[selector].empty? }
111
134
  result = data.group_by { |x| x[selector].first[:contract] }
135
+ result.each_key do |key|
136
+ result[key].map! do |x|
137
+ x[:volume].select! { |z| z[:contract] == key }
138
+ x[:oi].select! { |z| z[:contract] == key }
139
+ x
140
+ end
141
+ end
112
142
  if human
113
143
  result.each do |k, v|
114
144
  next unless filter.nil? || v.first[selector].first[:contract][2..4] =~ (/#{filter}/)
@@ -119,15 +149,112 @@ module Cotcube
119
149
  }\t#{v.last[:date]
120
150
  }\t#{format('%4d', (Date.parse(v.last[:date]) - Date.parse(v.first[:date])))
121
151
  }\t#{result[k].map do |x|
122
- x[:volume].select do
123
- x[:contract] == k
124
- end
125
- end.size
152
+ x[:volume].select do
153
+ x[:contract] == k
154
+ end
155
+ end.size
126
156
  }"
127
157
  # rubocop:enable Layout/ClosingParenthesisIndentation
128
158
  end
129
159
  end
130
160
  result
131
161
  end
162
+
163
+ def continuous_table(symbol: nil, id: nil,
164
+ selector: :volume,
165
+ filter: nil,
166
+ date: Date.today,
167
+ debuglevel: 1,
168
+ debug: false)
169
+ if debug.is_a?(Integer)
170
+ debuglevel = debug
171
+ debug = debuglevel > 0 ? true : false
172
+ end
173
+ raise ArgumentError, 'Selector must be either :volume or :oi' unless selector.is_a?(Symbol) &&
174
+ %i[volume oi].include?(selector)
175
+
176
+ sym = get_id_set(symbol: symbol, id: id)
177
+ if %w[R6 BJ GE].include? sym[:symbol]
178
+ puts "Rejecting to process symbol '#{sym[:symbol]}'."
179
+ return
180
+ end
181
+ id = sym[:id]
182
+ dfm = lambda do |x, y = date.year|
183
+ k = Date.strptime("#{y} #{x.negative? ? x + 366 : x}", '%Y %j')
184
+ k -= 1 while [0, 6].include?(k.wday)
185
+ k.strftime('%a, %Y-%m-%d')
186
+ rescue StandardError
187
+ puts "#{sym[:symbol]}\t#{x}\t#{y}"
188
+ end
189
+
190
+ ytoday = date.yday
191
+ data = continuous_overview(id: id, selector: selector, filter: filter, human: false, config: init)
192
+ .reject { |k, _| k[-2..].to_i == date.year % 2000 }
193
+ .group_by { |k, _| k[2] }
194
+ output_sent = []
195
+ early_year=nil
196
+ data.keys.sort.each do |month|
197
+ puts "Processing #{sym[:symbol]}#{month}" if debuglevel > 1
198
+ v0 = data[month]
199
+ ydays = v0.map { |_, v1| Date.parse(v1.last[:date]).yday }
200
+ fdays = v0.map { |_, v1| Date.parse(v1.first[:date]).yday }.sort
201
+ # if the last ml day nears the end of the year, we must fix
202
+ ydays.map! { |x| x > 350 ? x - 366 : x } if ydays.min < 50
203
+ fday = fdays[fdays.size / 2]
204
+ yavg = ydays.reduce(:+) / ydays.size
205
+ # a contract is proposed to use after fday - 1, but before ydays.min (green)
206
+ # it is warned to user after fday - 1 but before yavg - 1 (red)
207
+ # it is warned red >= yavg - 1 and <= yavg + 1
208
+ color = if (ytoday >= yavg - 1) && (ytoday <= yavg + 1)
209
+ :light_red
210
+ elsif (ytoday > ydays.min) && (ytoday < yavg - 1)
211
+ :light_yellow
212
+ elsif (ytoday >= (fday > yavg ? 0 : fday - 5)) && (ytoday <= ydays.min)
213
+ :light_green
214
+ else
215
+ :white
216
+ end
217
+ # rubocop:disable Layout/ClosingParenthesisIndentation
218
+ output = "#{sym[:symbol]
219
+ }#{month
220
+ }\t#{format '%12s', sym[:type]
221
+ }\t#{ytoday
222
+ }/#{fday
223
+ }\t#{format '%5d', ydays.min
224
+ }: #{dfm.call(ydays.min)
225
+ }\t#{format '%5d', yavg
226
+ }: #{dfm.call(yavg)
227
+ }\t#{format '%5d', ydays.max
228
+ }: #{dfm.call(ydays.max)}".colorize(color)
229
+ if debug || (color != :white)
230
+ puts output
231
+ output_sent << "#{sym[:symbol]}#{month}" unless color == :white
232
+ end
233
+ early_year ||= output
234
+ next unless (debug and debuglevel >= 2)
235
+
236
+ v0.each do |contract, v1|
237
+ puts "\t#{contract
238
+ }\t#{v1.first[:date]
239
+ }\t#{Date.parse(v1.last[:date]).strftime('%a')
240
+ }, #{v1.last[:date]
241
+ } (#{Date.parse(v1.last[:date]).yday}"
242
+ # rubocop:enable Layout/ClosingParenthesisIndentation
243
+ end
244
+ end
245
+ case output_sent.size
246
+ when 0
247
+ puts "WARNING: No output was sent for symbol '#{sym[:symbol]}'.".colorize(:light_yellow)
248
+ puts " Assuming late-year-processing.".light_yellow
249
+ puts early_year.light_green
250
+ when 1
251
+ # all ok
252
+ true
253
+ else
254
+ puts "---- #{output_sent} for #{sym[:symbol]} ---------------"
255
+
256
+ end
257
+ output_sent
258
+ end
132
259
  end
133
260
  end
@@ -36,11 +36,11 @@ module Cotcube
36
36
  ' is assumed (starting 5 pm CT yesterday, ending 4 pm CT today)'.colorize(:light_yellow)
37
37
  end
38
38
  result = select_specific_date(date: starting, base: base)
39
- result += base.select { |d| d[:datetime] > starting and d[:datetime] < ending.to_date }
39
+ result += base.select { |d| d[:datetime] >= starting and d[:datetime] < ending.to_date }
40
40
  result += select_specific_date(date: ending, base: base)
41
41
  result.uniq!
42
42
  else
43
- result = base.select { |x| x[:datetime] >= starting and x[:datetime] < ending }
43
+ result = base.select { |x| x[:datetime] >= starting and x[:datetime] <= ending }
44
44
  end
45
45
  result
46
46
  end
@@ -10,7 +10,7 @@ module Cotcube
10
10
  config: init,
11
11
  # supported types are :quarters, :hours, :days, :rth, :dailies, :weeks, :months
12
12
  interval: :days,
13
- # supported filters are :raw, :_24x7_, :full and :rth (and custom named, if provided as file)
13
+ # supported filters are :full and :rth (and custom named, if provided as file)
14
14
  filter: :full,
15
15
  # TODO: for future compatibility and suggestion: planning to include a function to update
16
16
  # with live data from broker
@@ -33,16 +33,22 @@ module Cotcube
33
33
 
34
34
  when :days, :weeks, :months
35
35
  base = provide_cached contract: contract, symbol: symbol, id: id, config: config, filter: filter,
36
- force_recent: force_recent
37
- base = extended_select_for_range(range: range, base: base) if range
36
+ range: range, force_recent: force_recent
38
37
  return base if %i[day days].include? interval
39
38
 
40
39
  # TODO: Missing implementation to reduce cached days to weeks or months
41
40
  raise 'Missing implementation to reduce cached days to weeks or months'
42
41
  when :dailies, :daily
43
- base = provide_daily contract: contract, symbol: symbol, id: id, config: config
44
- base = extended_select_for_range(range: range, base: base) if range
45
- base
42
+ provide_daily contract: contract, symbol: symbol, id: id, config: config, range: range
43
+ when :synth, :synthetic, :synthetic_days
44
+ days = provide_cached contract: contract, symbol: symbol, id: id, config: config, filter: filter,
45
+ range: range, force_recent: force_recent
46
+ dailies = provide_daily contract: contract, symbol: symbol, id: id, config: config, range: range
47
+ if days.last[:datetime] > dailies.last[:datetime]
48
+ dailies[..-2] + days.select { |d| d[:datetime] > dailies[-2][:datetime] }
49
+ else
50
+ dailies
51
+ end
46
52
  else
47
53
  raise ArgumentError, "Unsupported or unknown interval '#{interval}' in Bardata.provide"
48
54
  end
@@ -12,7 +12,7 @@ module Cotcube
12
12
  # 2. avg:
13
13
  # 3. lower: like median, but not at 1/2 but 1/4
14
14
  # 4. median:
15
- # 5. upper: like median, bot not at 1/2 but 3/4
15
+ # 5. upper: like median, but not at 1/2 but 3/4
16
16
  # 6. max:
17
17
  # and columns:
18
18
  # 1.a) all days os the series
@@ -20,6 +20,8 @@ module Cotcube
20
20
  # 1.c) the last 200 days
21
21
  # 2.a-c) same with days reduced to weeks (c: 52 weeks)
22
22
  # 3.a-c) same with days reduced to months (c: 12 months)
23
+ #
24
+ # NOTE: there is now a new method Cotcube::Helpers.simple_series_stats, that should be used in favor.
23
25
  def range_matrix(symbol: nil, id: nil, print: false, dim: 0.05)
24
26
  # rubocop:disable Style/MultilineBlockChain
25
27
  sym = get_id_set(symbol: symbol, id: id)
@@ -38,36 +40,43 @@ module Cotcube
38
40
  target[period][:all_size] = source[period].size
39
41
  target[period][:all_avg] = (source[period].map { |x| x[:range] }.reduce(:+) / source[period].size).round
40
42
  target[period][:all_lower] = source[period].sort_by do |x|
41
- x[:range]
42
- end.map { |x| x[:range] }[ (source[period].size * 1 / 4).round ]
43
- target[period][:all_median] = source[period].sort_by do |x|
44
- x[:range]
45
- end.map { |x| x[:range] }[ (source[period].size * 2 / 4).round ]
46
- target[period][:all_upper] = source[period].sort_by do |x|
47
- x[:range]
48
- end.map { |x| x[:range] }[ (source[period].size * 3 / 4).round ]
43
+ x[:range]
44
+ end.map { |x| x[:range] }[ (source[period].size * 1 / 4).round ]
45
+
46
+ target[period][:all_median] = source[period].sort_by do |x|
47
+ x[:range]
48
+ end.map { |x| x[:range] }[ (source[period].size * 2 / 4).round ]
49
+
50
+ target[period][:all_upper] = source[period].sort_by do |x|
51
+ x[:range]
52
+ end.map { |x| x[:range] }[ (source[period].size * 3 / 4).round ]
53
+
49
54
  target[period][:all_max] = source[period].map { |x| x[:range] }.max
50
55
  target[period][:all_records] = source[period].sort_by do |x|
51
- -x[:range]
52
- end.map { |x| { contract: x[:contract], range: x[:range] } }.take(5)
56
+ -x[:range]
57
+ end.map { |x| { contract: x[:contract], range: x[:range] } }.take(5)
53
58
 
54
59
  tenth = (source[period].size * dim).round
55
60
  custom = source[period].sort_by { |x| x[:range] }[tenth..source[period].size - tenth]
61
+
56
62
  target[period][:dim_size] = custom.size
57
63
  target[period][:dim_avg] = (custom.map { |x| x[:range] }.reduce(:+) / custom.size).round
58
64
  target[period][:dim_lower] = custom.sort_by do |x|
59
- x[:range]
60
- end.map { |x| x[:range] }[ (custom.size * 1 / 4).round ]
61
- target[period][:dim_median] = custom.sort_by do |x|
62
- x[:range]
63
- end.map { |x| x[:range] }[ (custom.size * 2 / 4).round ]
64
- target[period][:dim_upper] = custom.sort_by do |x|
65
- x[:range]
66
- end.map { |x| x[:range] }[ (custom.size * 3 / 4).round ]
67
- target[period][:dim_max] = custom.map { |x| x[:range] }.max
65
+ x[:range]
66
+ end.map { |x| x[:range] }[ (custom.size * 1 / 4).round ]
67
+
68
+ target[period][:dim_median] = custom.sort_by do |x|
69
+ x[:range]
70
+ end.map { |x| x[:range] }[ (custom.size * 2 / 4).round ]
71
+
72
+ target[period][:dim_upper] = custom.sort_by do |x|
73
+ x[:range]
74
+ end.map { |x| x[:range] }[ (custom.size * 3 / 4).round ]
75
+
76
+ target[period][:dim_max] = custom.map { |x| x[:range] }.max
68
77
  target[period][:dim_records] = custom.sort_by do |x|
69
- -x[:range]
70
- end.map { |x| { contract: x[:contract], range: x[:range] } }.take(5)
78
+ -x[:range]
79
+ end.map { |x| { contract: x[:contract], range: x[:range] } }.take(5)
71
80
 
72
81
  range = case period
73
82
  when :months
@@ -83,18 +92,18 @@ module Cotcube
83
92
  target[period][:rec_size] = custom.size
84
93
  target[period][:rec_avg] = (custom.map { |x| x[:range] }.reduce(:+) / custom.size).round
85
94
  target[period][:rec_lower] = custom.sort_by do |x|
86
- x[:range]
87
- end.map { |x| x[:range] }[ (custom.size * 1 / 4).round ]
88
- target[period][:rec_median] = custom.sort_by do |x|
89
- x[:range]
90
- end.map { |x| x[:range] }[ (custom.size * 2 / 4).round ]
91
- target[period][:rec_upper] = custom.sort_by do |x|
92
- x[:range]
93
- end.map { |x| x[:range] }[ (custom.size * 3 / 4).round ]
94
- target[period][:rec_max] = custom.map { |x| x[:range] }.max
95
+ x[:range]
96
+ end.map { |x| x[:range] }[ (custom.size * 1 / 4).round ]
97
+ target[period][:rec_median] = custom.sort_by do |x|
98
+ x[:range]
99
+ end.map { |x| x[:range] }[ (custom.size * 2 / 4).round ]
100
+ target[period][:rec_upper] = custom.sort_by do |x|
101
+ x[:range]
102
+ end.map { |x| x[:range] }[ (custom.size * 3 / 4).round ]
103
+ target[period][:rec_max] = custom.map { |x| x[:range] }.max
95
104
  target[period][:rec_records] = custom.sort_by do |x|
96
- -x[:range]
97
- end.map { |x| { contract: x[:contract], range: x[:range] } }.take(5)
105
+ -x[:range]
106
+ end.map { |x| { contract: x[:contract], range: x[:range] } }.take(5)
98
107
  end
99
108
 
100
109
  if print
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cotcube-bardata
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.9.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benjamin L. Tischendorf
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-07 00:00:00.000000000 Z
11
+ date: 2021-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -112,16 +112,16 @@ dependencies:
112
112
  name: rake
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - ">="
115
+ - - "~>"
116
116
  - !ruby/object:Gem::Version
117
- version: '12'
117
+ version: '13'
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
- - - ">="
122
+ - - "~>"
123
123
  - !ruby/object:Gem::Version
124
- version: '12'
124
+ version: '13'
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: rspec
127
127
  requirement: !ruby/object:Gem::Requirement