JayBeams  0.1
Another project to have fun coding.
market_participant_position_message.cpp
Go to the documentation of this file.
2 
3 #include <iostream>
4 
6 
7 std::ostream& jb::itch5::
8 operator<<(std::ostream& os, market_participant_position_message const& x) {
9  return os << x.header << ",mpid=" << x.mpid << ",stock=" << x.stock
10  << ",primary_market_maker=" << x.primary_market_maker
11  << ",market_maker_mode=" << x.market_maker_mode
12  << ",market_participant_state=" << x.market_participant_state;
13 }
Represent a &#39;Market Participant Position&#39; message in the ITCH-5.0 protocol.
std::ostream & operator<<(std::ostream &os, add_order_message const &x)
Streaming operator for jb::itch5::add_order_message.