Class: Quickfix::LastMkt

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LastMkt

Returns a new instance of LastMkt.



11121
11122
11123
11124
11125
11126
11127
# File 'lib/quickfix_fields.rb', line 11121

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

Class Method Details

.fieldObject



11118
11119
11120
# File 'lib/quickfix_fields.rb', line 11118

def LastMkt.field
	return 30
end