Built End To End Trade Execution Application with Our Own Trading Station with Automated Testing
Gitlab Repo : https://gitlab.com/beyond_the_technology/trading-application-llama-persist-data
This videos explains
1. Working Demo of Trade Execution Application for BUY/SELL with MARKET/LIMIT Order Type
2. How to add logic to store data in relational database without writing single of code by myself
3. How to add Automated Test layer to test each component
4. How to Add advanced features like supporting
4.1 TimeInForce
DAY = "DAY" # Valid until the end of the trading day
GTC = "GTC" # Good till canceled
OPG = "OPG" # At the opening of the trading day
IOC = "IOC" # Immediate or cancel
FOK = "FOK" # Fill or Kill
GTD = "GTD" # Good till date
CLO = "CLO" # At the closing of the trading day
4.2 Order Type
MARKET = "MARKET" # Buy or sell at the current market price
LIMIT = "LIMIT" # Buy or sell at a specific price
STOP = "STOP" # Buy or sell when the price reaches a specific price
STOP_LIMIT = "STOP_LIMIT" # Buy or sell when the price reaches a specific price, then execute at a specific price
Trading application Components :
1. Order Management System
2. Exchange Connectors
3. Trade Execution Engineers
4. Risk Management System
5. Market Data Feed
6. Trading Station
No comments:
Post a Comment