lib/cotcube-bardata/constants.rb in cotcube-bardata-0.1.3 vs lib/cotcube-bardata/constants.rb in cotcube-bardata-0.1.4
- old
+ new
@@ -1,17 +1,17 @@
# frozen_string_literal: true
module Cotcube
module Bardata
-
SYMBOL_EXAMPLES = [
- { id: "13874U", symbol: "ET", ticksize: 0.25, power: 1.25, months: "HMUZ", bcf: 1.0, reports: "LF", name: "S&P 500 MICRO" },
- { id: "209747", symbol: "NM", ticksize: 0.25, power: 0.5, monhts: "HMUZ", bcf: 1.0, reports: "LF", name: "NASDAQ 100 MICRO" }
+ { id: '13874U', symbol: 'ET', ticksize: 0.25, power: 1.25, months: 'HMUZ', bcf: 1.0, reports: 'LF',
+ name: 'S&P 500 MICRO' },
+ { id: '209747', symbol: 'NM', ticksize: 0.25, power: 0.5, months: 'HMUZ', bcf: 1.0, reports: 'LF',
+ name: 'NASDAQ 100 MICRO' }
].freeze
- MONTH_COLOURS = { 'F' => :cyan, 'G' => :green, 'H' => :light_green,
- 'J' => :blue, 'K' => :yellow, 'M' => :light_yellow,
- 'N' => :cyan, 'Q' => :magenta, 'U' => :light_magenta,
- 'V' => :blue, 'X' => :red, 'Z' => :light_red }.freeze
-
+ MONTH_COLOURS = { 'F' => :cyan, 'G' => :green, 'H' => :light_green,
+ 'J' => :blue, 'K' => :yellow, 'M' => :light_yellow,
+ 'N' => :cyan, 'Q' => :magenta, 'U' => :light_magenta,
+ 'V' => :blue, 'X' => :red, 'Z' => :light_red }.freeze
end
end