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 CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
387 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
256 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
215 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
300 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
265 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment