Class: Quickfix::ImpliedMarketIndicator

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ImpliedMarketIndicator

Returns a new instance of ImpliedMarketIndicator.



15281
15282
15283
15284
15285
15286
15287
# File 'lib/quickfix_fields.rb', line 15281

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