|
ATS
An algorithmic trading system completely written in C++
|
The OrderBook struct represents the orderbook. More...
#include <OrderManager.h>
Public Member Functions | |
| OrderBook (std::vector< double > bid={}, std::vector< double > bidVol={}, std::vector< double > ask={}, std::vector< double > askVol={}) | |
| The OrderBook constructor. More... | |
Public Attributes | |
| std::vector< double > | bid |
| std::vector< double > | bidVol |
| std::vector< double > | ask |
| std::vector< double > | askVol |
The OrderBook struct represents the orderbook.
|
inline |
The OrderBook constructor.
| bid | The bid prices. |
| bidVol | The bid volumes. |
| ask | The ask prices. |
| askVol | The ask volumes. |
| std::vector<double> ats::OrderBook::ask |
The ask prices.
| std::vector<double> ats::OrderBook::askVol |
The ask volumes.
| std::vector<double> ats::OrderBook::bid |
The bid prices.
| std::vector<double> ats::OrderBook::bidVol |
The bid volumes.