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 NullPointStrategies, Today, 05:17 AM
|
0 responses
49 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
126 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
67 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
42 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
46 views
0 likes
|
Last Post
|

Comment