Class: Quickfix::StrikePrice

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ StrikePrice

Returns a new instance of StrikePrice.



3035
3036
3037
3038
3039
3040
3041
# File 'lib/quickfix_fields.rb', line 3035

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

Class Method Details

.fieldObject



3032
3033
3034
# File 'lib/quickfix_fields.rb', line 3032

def StrikePrice.field
	return 202
end