Show / Hide Table of Contents

Order and fills overview

A trade subscription represents a view of a subset of a trader’s orders and fills. You can create more than one trade subscription in your TT .NET SDK application where each may have a view of a different subset of orders and fills. From within a trade subscription, you can subscribe for order status events to receive updates as orders are added, changed, filled, and deleted. You can also subscribe for notifications when P&L changes.

Creating a trade subscription

To create a trade subscription, you must create a TradeSubscription object and call the Start method.

TradeSubscription m_ts = new TradeSubscription(tt_net_sdk.Dispatcher.Current);
m_ts.Start();
In this article
Back to top