Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Get Settlement Price from Data Provider (Kinetick)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    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.

    #2
    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:


    Code:
    protected override void OnMarketData(Data.MarketDataEventArgs marketDataUpdate)
            {
                if (marketDataUpdate.IsReset)
                    CurrentValue = double.MinValue;
                else if (marketDataUpdate.MarketDataType == Data.MarketDataType.Settlement)
                    CurrentValue = marketDataUpdate.Price;
            }
    In another script like an Indicator, you would replace CurrentValue (MA Specific) with a variable or set this value to a plot.

    I look forward to being of further assistance.

    Comment


      #3
      Thank You Jesse. Very helpful.

      Comment


        #4
        Hi,
        would you please explain how to read historical settlement in an Indicator OnBarUpdate?
        Last edited by Bobin; 11-22-2021, 12:20 AM.

        Comment


          #5
          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 Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          636 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          366 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          107 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          568 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          571 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X