Class: Quickfix::FloorPrice
- Inherits:
-
DoubleField
- Object
- DoubleField
- Quickfix::FloorPrice
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ FloorPrice
constructor
A new instance of FloorPrice.
Constructor Details
#initialize(data = nil) ⇒ FloorPrice
Returns a new instance of FloorPrice.
14046 14047 14048 14049 14050 14051 14052 |
# File 'lib/quickfix_fields.rb', line 14046 def initialize(data = nil) if( data == nil ) super(1200) else super(1200, data) end end |
Class Method Details
.field ⇒ Object
14043 14044 14045 |
# File 'lib/quickfix_fields.rb', line 14043 def FloorPrice.field return 1200 end |