I use both Esignal and IB in case that makes a difference.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Nasdaq TotalView and NYSE OpenBook
Collapse
X
-
I assume the Level 2 Data feed is supported even though it's not listed?
Isn't Totalview just an enhanced version of Level 2? ie. you get more rows of the same type of data(multiple rows for the same MM)
If you subscribe to Totalview and then implement the method below in an indicator, will you not get those "extra" rows that TotalView provides?
protected override void OnMarketDepth(MarketDepthEventArgs e)
{
// Print some data to the Output window
if (e.MarketDataType == MarketDataType.Ask && e.Operation == Operation.Update)
Print("The most recent ask change is " + e.Price + " " + e.Volume);
}
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, Yesterday, 09:41 PM
|
1 response
20 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, Today, 02:41 AM
|
0 responses
6 views
0 likes
|
Last Post
by CarlTrading
Today, 02:41 AM
|
||
|
Started by CaptainJack, Yesterday, 11:44 PM
|
0 responses
17 views
0 likes
|
Last Post
by CaptainJack
Yesterday, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
33 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
32 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment