JayBeams  0.1
Another project to have fun coding.
net_order_imbalance_indicator_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, net_order_imbalance_indicator_message const& x) {
9  return os << x.header << ",paired_shares=" << x.paired_shares
10  << ",imbalance_shares=" << x.imbalance_shares
11  << ",imbalance_direction=" << x.imbalance_direction
12  << ",stock=" << x.stock << ",far_price=" << x.far_price
13  << ",near_price=" << x.near_price
14  << ",current_reference_price=" << x.current_reference_price
15  << ",cross_type=" << x.cross_type
16  << ",price_variation_indicator=" << x.price_variation_indicator;
17 }
std::ostream & operator<<(std::ostream &os, add_order_message const &x)
Streaming operator for jb::itch5::add_order_message.
Represent an &#39;Net Order Imbalance Indicator&#39; message in the ITCH-5.0 protocol.