Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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.
    JesseNinjaTrader Customer Service

    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.


          JesseNinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Jon17, Today, 04:33 PM
          0 responses
          1 view
          0 likes
          Last Post Jon17
          by Jon17
           
          Started by Javierw.ok, Today, 04:12 PM
          0 responses
          4 views
          0 likes
          Last Post Javierw.ok  
          Started by timmbbo, Today, 08:59 AM
          2 responses
          10 views
          0 likes
          Last Post bltdavid  
          Started by alifarahani, Today, 09:40 AM
          6 responses
          41 views
          0 likes
          Last Post alifarahani  
          Started by Waxavi, Today, 02:10 AM
          1 response
          19 views
          0 likes
          Last Post NinjaTrader_LuisH  
          Working...
          X