Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Ninjatrader 8 missing historical tick data

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

    Ninjatrader 8 missing historical tick data

    I tried downloading historical tick data on Ninjatrader 8 for several eurex futures. The data of may and first two weeks of june is missing. On Ninjatrader 7 it is available. I use a Ninja Trader Continuum connection.

    #2
    Hello jzag456,

    What instruments?

    What contract months?
    Christopher S.NinjaTrader Customer Service

    Comment


      #3
      FESX 06-15 and FDAX 06-15

      Comment


        #4
        Hello jzag456,

        This historical data is missing on the historical data server used for NinjaTrader 8

        I have reported this missing data.

        The missing data may be added back over the coming weekend
        Christopher S.NinjaTrader Customer Service

        Comment


          #5
          Hello jzag456,

          The data has been restored

          Please restart NinjaTrader to load the data
          Christopher S.NinjaTrader Customer Service

          Comment


            #6
            Accessing price changes inside of the bar

            Hello,

            I wrote this as a toy to determine the availability of price change data inside of a bar. I have read that that information is now available and stored by Ninjatrader 8. This code works as I intended live but not on historical. What do I need to do to have it work with historical data?

            Crosses is a histogram, zero based that logs a count of the times price traces through the opening price;

            protected override void OnBarUpdate()
            {
            if(IsFirstTickOfBar)count = 0;
            if( !up && Close[0] > Open[0])
            {
            count = count + 1;
            Crosses[0] = count;
            up = true;
            }

            if( up && Close[0] < Open[0])
            {
            count = count + 1;
            Crosses[0] = count;
            up = false;
            }
            }

            Comment


              #7
              Hello abdunbar,

              Thanks for your post.

              For your code to look at tick data, in NinjaTrader 8, within a historical bar, you would need to enable "tick replay". Please see: http://ninjatrader.com/support/helpG...ick_replay.htm

              Comment


                #8
                Yes, that worked, Thanks

                Archie

                Comment

                Latest Posts

                Collapse

                Topics Statistics Last Post
                Started by Geovanny Suaza, 02-11-2026, 06:32 PM
                0 responses
                670 views
                0 likes
                Last Post Geovanny Suaza  
                Started by Geovanny Suaza, 02-11-2026, 05:51 PM
                0 responses
                379 views
                1 like
                Last Post Geovanny Suaza  
                Started by Mindset, 02-09-2026, 11:44 AM
                0 responses
                111 views
                0 likes
                Last Post Mindset
                by Mindset
                 
                Started by Geovanny Suaza, 02-02-2026, 12:30 PM
                0 responses
                575 views
                1 like
                Last Post Geovanny Suaza  
                Started by RFrosty, 01-28-2026, 06:49 PM
                0 responses
                582 views
                1 like
                Last Post RFrosty
                by RFrosty
                 
                Working...
                X