JayBeams  0.1
Another project to have fun coding.
stock_trading_action_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, stock_trading_action_message const& x) {
9  return os << x.header << ",stock=" << x.stock
10  << ",trading_state=" << x.trading_state
11  << ",reserved=" << x.reserved << ",reason=" << x.reason;
12 }
Represent a &#39;Stock Trading Action&#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.