Class: Quickfix::OfferPx

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OfferPx

Returns a new instance of OfferPx.



2203
2204
2205
2206
2207
2208
2209
# File 'lib/quickfix_fields.rb', line 2203

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