Class: Quickfix::UnderlyingStrikePriceBoundaryMethod

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingStrikePriceBoundaryMethod

Returns a new instance of UnderlyingStrikePriceBoundaryMethod.



26500
26501
26502
26503
26504
26505
26506
# File 'lib/quickfix_fields.rb', line 26500

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