Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Market Analyzer - Last Close and other price data documentation

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

    Market Analyzer - Last Close and other price data documentation

    Is there a documentation page for the various M/A Columns that display fundamental price data (i.e. Last Close, Opening, Settlement) ?
    Thx.

    #2
    Can you clarify what kind of documentation you're looking for regarding these columns? Just how they work in general, or did you have specific questions?

    Comment


      #3
      this kind... https://ninjatrader.com/support/help...t_analyzer.htm

      I'd like to understand the technical information on how those prices are derived. Other that just saying its from the data feed provider. I've seen a couple posts where users are pointing out that those prices don't match chart data. So, I'd like to review any documentation that explains how those fundamental prices are:
      1) Derived (eg. what time of day the price was captured).
      2) How they differ from chart data (eg. Daily charts, intra-day charts)
      3) What Trading Hour session would approximate the same price on an intra day chart.
      Information like that to help technical users and coders to have a full understanding between the various sources those prices can be found.
      Thx
      Last edited by zacharydw00; 09-09-2019, 09:10 AM.

      Comment


        #4
        No, there is no additional documentation in the help guide about these specific columns. Please go into further detail about the specific questions you have and I will be able to answer them.

        Comment


          #5
          Technical correction to my previous references, I'm asking about MarketData prices not fundamental price data. In other posts I've seen this referred to as fundamental data.

          In reference to this page... https://ninjatrader.com/support/help...marketdata.htm
          and these prices from that page for US markets/exchanges,
          - LastClose
          - Opening
          - Settlement

          1) At what time of day are these prices taken? e.g. On a 1 minute chart, which bar would those prices match up with?
          2) Which Trading Hours session would generate the same prices on a daily bar dataseries?
          3) Is Sunday included in generating this data, or only Mon-Fri?
          3a) If Sunday is included, how can Sunday be removed, because in practice traders don't use Sunday for this type of data?

          Comment


            #6
            Hello zacharydw00,

            When the prices are received will vary between different data providers, however Settlement/LastClose would typically be updated after the close of a daily bar.

            Trading Hours session templates will filter data series so they contain data comprised within that period of time, but you may not see a settlement adjusted value when building a 1440minute chart filtered for trading hours when you would see a settlement adjusted close with a daily bar. You can see our Data By provider grid for a breakdown of data providers who offer settlement adjusted closes.

            Data By Provider - https://ninjatrader.com/support/help...y_provider.htm

            When testing on Kinetick and NinjaTrader Continuum, Sunday is not included and Settlement/LastClose is matching the 9/6/2019 daily bar.

            To observe exactly when you see these values from your data provider, I recommend testing the following:

            Code:
            protected override void OnMarketData(MarketDataEventArgs marketDataUpdate)
            {
                if (marketDataUpdate.MarketDataType == MarketDataType.LastClose)
                    Print("LastClose: " + marketDataUpdate.Price + " Time: " + DateTime.Now);
                if (marketDataUpdate.MarketDataType == MarketDataType.Settlement)
                    Print("Settlement: " + marketDataUpdate.Price + " Time: " + DateTime.Now);
                if (marketDataUpdate.MarketDataType == MarketDataType.Opening)
                    Print("Openning: " + marketDataUpdate.Price + " Time: " + DateTime.Now);
            }
            Please let us know if we can be of further assistance.

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by Mindset, 04-21-2026, 06:46 AM
            0 responses
            44 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by M4ndoo, 04-20-2026, 05:21 PM
            0 responses
            54 views
            0 likes
            Last Post M4ndoo
            by M4ndoo
             
            Started by M4ndoo, 04-19-2026, 05:54 PM
            0 responses
            34 views
            0 likes
            Last Post M4ndoo
            by M4ndoo
             
            Started by cmoran13, 04-16-2026, 01:02 PM
            0 responses
            95 views
            0 likes
            Last Post cmoran13  
            Started by PaulMohn, 04-10-2026, 11:11 AM
            0 responses
            57 views
            0 likes
            Last Post PaulMohn  
            Working...
            X