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 judysamnt7, 03-13-2023, 09:11 AM
          4 responses
          56 views
          0 likes
          Last Post DynamicTest  
          Started by ScottWalsh, Today, 06:52 PM
          4 responses
          35 views
          0 likes
          Last Post ScottWalsh  
          Started by olisav57, Today, 07:39 PM
          0 responses
          7 views
          0 likes
          Last Post olisav57  
          Started by trilliantrader, Today, 03:01 PM
          2 responses
          19 views
          0 likes
          Last Post helpwanted  
          Started by cre8able, Today, 07:24 PM
          0 responses
          8 views
          0 likes
          Last Post cre8able  
          Working...
          X