Class: Quickfix::BidPx

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BidPx

Returns a new instance of BidPx.



16893
16894
16895
16896
16897
16898
16899
# File 'lib/quickfix_fields.rb', line 16893

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

Class Method Details

.fieldObject



16890
16891
16892
# File 'lib/quickfix_fields.rb', line 16890

def BidPx.field
	return 132
end