Event raised when the trade volume changes.

Namespace:  T4.API
Assembly:  T4API.20 (in T4API.20.dll)

Syntax

C#
public event Market..::.MarketTradeVolumeEventHandler MarketTradeVolume
Visual Basic (Declaration)
Public Event MarketTradeVolume As Market..::.MarketTradeVolumeEventHandler
Visual C++
public:
 event Market..::.MarketTradeVolumeEventHandler^ MarketTradeVolume {
	void add (Market..::.MarketTradeVolumeEventHandler^ value);
	void remove (Market..::.MarketTradeVolumeEventHandler^ value);
}

Remarks

TradeVolume data is provided on a slow buffer and consists of information regarding the volume traded at each price and how recently that price traded. It is accessible via the LastTradeVolume property of the market. This event provides a list of the changes that have occurred.

Note: Use the Market.MarketDepthTrade event for determining when trades have occurred.

See Also