How is it possible to retrieve the data provider settlement price of a instrument within ninjascript. The Market analyzer does retrieve this price, so I know that kinetic supplies it. I realize you could get the prior day close price, but I would like to retrieve that actual settlement supplied by Kinetick. Any suggestions.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Get Settlement Price from Data Provider (Kinetick)
Collapse
X
-
Get Settlement Price from Data Provider (Kinetick)
Hi,
How is it possible to retrieve the data provider settlement price of a instrument within ninjascript. The Market analyzer does retrieve this price, so I know that kinetic supplies it. I realize you could get the prior day close price, but I would like to retrieve that actual settlement supplied by Kinetick. Any suggestions.Tags: None
-
Hello woodyfox,
In NT8 the MA columns are now in the NinjaScript editor so you can actually copy their code. The following is how the settlement is found:
In another script like an Indicator, you would replace CurrentValue (MA Specific) with a variable or set this value to a plot.Code:protected override void OnMarketData(Data.MarketDataEventArgs marketDataUpdate) { if (marketDataUpdate.IsReset) CurrentValue = double.MinValue; else if (marketDataUpdate.MarketDataType == Data.MarketDataType.Settlement) CurrentValue = marketDataUpdate.Price; }
I look forward to being of further assistance.
- Likes 1
-
Hello Bobin,
Settlement prices are not part of the market data which the platform can utilize for historical data so you could not use that type of data from historical. If you have a provider which supports that market data type you can try to record playback data and then use the recorded data. You can turn on playback recording in the Tools-> options-> market data menu. In any case you cant use that data from OnBarUpdate but would need to use the sample from post #2 for realtime processing.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
67 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
150 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
162 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
99 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
287 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment