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
              Paul H.NinjaTrader Customer Service

              Comment


                #8
                Yes, that worked, Thanks

                Archie

                Comment

                Latest Posts

                Collapse

                Topics Statistics Last Post
                Started by r68cervera, Today, 05:29 AM
                0 responses
                3 views
                0 likes
                Last Post r68cervera  
                Started by geddyisodin, Today, 05:20 AM
                0 responses
                6 views
                0 likes
                Last Post geddyisodin  
                Started by JonesJoker, 04-22-2024, 12:23 PM
                6 responses
                35 views
                0 likes
                Last Post JonesJoker  
                Started by GussJ, 03-04-2020, 03:11 PM
                12 responses
                3,241 views
                0 likes
                Last Post Leafcutter  
                Started by AveryFlynn, Today, 04:57 AM
                0 responses
                7 views
                0 likes
                Last Post AveryFlynn  
                Working...
                X