I just had another question regarding MarketDataEventArgs. There is Price and Last, same as Bid, Ask. This 'Last' is not MarketDataType.Last, and it is not documented here: https://ninjatrader.com/support/help...aeventargs.htm. What is it? Samilar question regarding Data Box. What is 'Price'? besides OHLC.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Questions about MarketDataEventArgs
Collapse
X
-
Questions about MarketDataEventArgs
OK. IB is too slow to download. I will use some workaround on this.
I just had another question regarding MarketDataEventArgs. There is Price and Last, same as Bid, Ask. This 'Last' is not MarketDataType.Last, and it is not documented here: https://ninjatrader.com/support/help...aeventargs.htm. What is it? Samilar question regarding Data Box. What is 'Price'? besides OHLC.Tags: None
-
Hello cliffhu,
Thank you for your post.
This question has been split into another thread since it was unrelated to your previous inquiry.
What "price and last" are you referring to?There is Price and Last, same as Bid, Ask. This 'Last' is not MarketDataType.Last, and it is not documented here
To get Last price updates from OnMarketData, you could do the following:
Code:protected override void OnMarketData(MarketDataEventArgs marketDataUpdate) { // Check if the update is a Last update if (marketDataUpdate.MarketDataType == MarketDataType.Last) //If it is a last update, print the price Print("Last = " + marketDataUpdate.Price); }
The Price value in the Data Box refers to the price where your cursor is.? Samilar question regarding Data Box. What is 'Price'?
-
Hello,
Price would be the current bid/ask/last price within OnMarketData. If you are getting the updates from OnMarketData(), marketDataUpdate.Price will get you the latest price.
Could you provide further detail on what you mean by this? To get the closing price of a bar you can use the Close collection from within OnBarUpdate.which one will be Close price when bar is closed?
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
161 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
81 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
125 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
206 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
184 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment