Event raised when the trade volume changes.

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

Syntax

C#
public event MarketList..::.MarketTradeVolumeEventHandler MarketTradeVolume
Visual Basic (Declaration)
Public Event MarketTradeVolume As MarketList..::.MarketTradeVolumeEventHandler
Visual C++
public:
 event MarketList..::.MarketTradeVolumeEventHandler^ MarketTradeVolume {
	void add (MarketList..::.MarketTradeVolumeEventHandler^ value);
	void remove (MarketList..::.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