Class: Quickfix::StrikePrice

Inherits:
DoubleField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StrikePrice

Returns a new instance of StrikePrice.



6883
6884
6885
6886
6887
6888
6889
# File 'lib/quickfix_fields.rb', line 6883

def initialize(data = nil)
  if( data == nil )
    super(202)
  else
    super(202, data)
  end
end

Class Method Details

.fieldObject



6880
6881
6882
# File 'lib/quickfix_fields.rb', line 6880

def StrikePrice.field
  return 202
end