Sha256: 72cab710b6936a0b0dfca1d5020cba822abc9311d6eb5bd4705a3d09cdf058f6

Contents?: true

Size: 828 Bytes

Versions: 4

Compression:

Stored size: 828 Bytes

Contents

class Iro::PriceItem
  include Mongoid::Document
  include Mongoid::Timestamps
  store_in collection: 'iro_price_items'

  field :putCall,         type: String
  field :symbol,          type: String
  field :ticker,          type: String

  field :bid,             type: Float
  field :bidSize,         type: Integer
  field :ask,             type: Float
  field :askSize,         type: Integer
  field :last,            type: Float

  field :openPrice,       type: Float
  field :closePrice,      type: Float
  field :lowPrice,        type: Float
  field :highPrice,       type: Float

  field :quoteTimeInLong, type: Integer
  field :timestamp,       type: Integer
  field :totalVolume,     type: Integer
  field :mark,            type: Float
  field :exchangeName,    type: String
  field :volatility,      type: Float

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
iron_warbler-2.0.7.19 app/models/iro/price_item.rb
iron_warbler-2.0.7.18 app/models/iro/price_item.rb
iron_warbler-2.0.7.17 app/models/iro/price_item.rb
iron_warbler-2.0.7.16 app/models/iro/price_item.rb