vim-quickfix

How do you validate values for an order using QuickFix

安稳与你 提交于 2020-03-27 04:44:52
问题 I'm a beginner with quickfix and I'm not sure if the problem I'm having is trivial or not. I want to validate the values of an order using quickfix such as symbol , price , quantity , etc. Does quickfix provide a function in python that validates if a price is of type PRICE and that its value is valid (for example: 4.23)? Here is the reference: http://www.quickfixengine.org/FIX42.html#field_Price 回答1: As DumbCoder says in the comment QuickFix does not validate the contents of a message. If

How do you validate values for an order using QuickFix

不问归期 提交于 2020-03-27 04:43:53
问题 I'm a beginner with quickfix and I'm not sure if the problem I'm having is trivial or not. I want to validate the values of an order using quickfix such as symbol , price , quantity , etc. Does quickfix provide a function in python that validates if a price is of type PRICE and that its value is valid (for example: 4.23)? Here is the reference: http://www.quickfixengine.org/FIX42.html#field_Price 回答1: As DumbCoder says in the comment QuickFix does not validate the contents of a message. If