Class: Quickfix::LastShares

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LastShares

Returns a new instance of LastShares.



1267
1268
1269
1270
1271
1272
1273
# File 'lib/quickfix_fields.rb', line 1267

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