Using the Bitfinex WebSocket API I am subscribing to trades.
The data I receive looks like this:
chanId msgType tradeID Timestamp Amount Price
[ 139260, 'te', [ 73962571, 1507383025000, 97.628437, 0.503 ] ]
[ 139260, 'tu', [ 73962571, 1507383025000, 97.628437, 0.503 ] ]
te = Trade Execution
tu = Trade Execution Update
As stated by the Abbreviations Glossary
What I do not understand is that for the same tradeId I first get a te message and then a moment later a tu message. There is no difference in content of these messages, so what is the purpose of the tu message?
What is the difference between a Trade Execution and a Trade Execution Update?