- graphql mutation to create an order
- Create Order
[{ 'correlation_id': 'CID1', 'executing_broker': 'TS-SS', 'instrument': { 'instrument_code': 'VOD.L', 'instrument_code_type': 'RIC' }, 'order_type': 'LIMIT', 'price': 99, 'quantity': 1000, 'reference1': 'REF1', 'reference2': 'REF2', 'side': 'BUY' }]
- Create Order
- graphql query to retrieve create order/portfolio
- Retrieve Order
- [GET] https://ny-tunnel.uatprod.tradingscreen.com:443/api/om/v2/equity
order_ts_id
- Retrieve Order
- stitch schema such that we can make the following call
{ getOrderById(ts_order_id: "SOMEID") { tsMarketId isin product { venueId ticker } } }
- Lookup an order (with selective fields), and along with it its the associated Product (again with selective fields).
- Lookup an order (with selective fields), and along with it its the associated Product (again with selective fields).
- React App with MVP features.
- React Native app to replicate MVP features.