ATS
An algorithmic trading system completely written in C++
ats.h
Go to the documentation of this file.
1 //
2 // Created by Anouar Achghaf on 12/02/2023.
3 //
11 #ifndef ALGO_TRADING_ATS_H
12 #define ALGO_TRADING_ATS_H
13 
14 #include "MarketData.h"
15 #include "Strategy.h"
16 #include "PositionManager.h"
17 #include "OrderManager.h"
18 #include "ExchangeManager.h"
19 #include "BinanceExchangeManager.h"
20 #include "RiskManager.h"
21 
40 #endif //ALGO_TRADING_ATS_H
This class is responsible for managing orders and interacting with the Binance exchange API....
Contains an abstract class ExchangeManager The ExchangeManager class is an abstract class that define...
Contains the declaration of the MarketData class, which handles the streaming of market data for the ...
Contains the declaration of the OrderManager class and related enums and structs.
This header file contains the declaration of the PositionManager class, which is responsible for mana...
Defines an abstract interface for trading strategies.