Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Where to download 7.0.1000.5

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

    Where to download 7.0.1000.5

    Hi,

    I have problem with daily data time template setting which effect the results of my strategy analyzer if run on version 7.0.1000.6 and 7.0.1000.7. But I do not have any issue with 7.0.1000.5.

    Could you please provide me a link to 7.0.1000.5 installer?

    #2
    Hello Alvantage,

    Unfortunately, we do not have version 7.0.1000.5 available on our download page anymore.

    There is a known issue in NinjaTrader 7.0.1000.6 which causes daily data not to display data and backtest/optimization results using most session templates. It is solved by using the 'Default 24/7' session template.

    However, the issue is fixed in our latest version (7.0.1000.7). You can use any session template when performing a backtest/optimization on daily data.

    If you experience a different issue, could you please clarify what effect the issue has on your results.
    JasonNinjaTrader Customer Service

    Comment


      #3
      I have the following strategy code to write daily data into text file.
      ===============
      Code:
      #region Using declarations
      using System;
      using System.ComponentModel;
      using System.Diagnostics;
      using System.Drawing;
      using System.Drawing.Drawing2D;
      using System.Xml.Serialization;
      using NinjaTrader.Cbi;
      using NinjaTrader.Data;
      using NinjaTrader.Indicator;
      using NinjaTrader.Gui.Chart;
      using NinjaTrader.Strategy;
      using System.IO;
      #endregion
      
      // This namespace holds all strategies and is required. Do not change it.
      namespace NinjaTrader.Strategy
      {
          /// <summary>
          /// Write Bar State
          /// </summary>
          [Description("Write Price Data")]
          public class alvDayDataWrite : Strategy
          {
              #region Variables
      			private bool			bInit				= true;
      			private string			Inst				= "";
      			private string			path				= "";
      
      		#endregion
      
              /// <summary>
              /// This method is used to configure the strategy and is called once before any strategy method is called.
              /// </summary>
              protected override void Initialize()
              {
                  CalculateOnBarClose = false;
      			BarsRequired = 1;
      			
              }
      
              /// <summary>
              /// Called on each bar update event (incoming tick)
              /// </summary>
              protected override void OnBarUpdate()
              {
      			
      			if (bInit) 
      			{
      				Inst = Instrument.MasterInstrument.Name;
      				path = @"C:\Users\ACER\Documents\NinjaTrader 7\db\dayYahoo\" + Inst;
      //				File.WriteAllText(path, "Date,Time,Open,High,Low,Close,Volume" + Environment.NewLine);
      				File.WriteAllText(path, "Date,Open,High,Low,Close,Volume" + Environment.NewLine);
      				bInit = false;
      			}
      			
      			File.AppendAllText(path, ToDay(Time[0]) + "," + Open[0] + "," + High[0] + "," + Low[0] + "," + Close[0]  + "," + Volume[0]+ Environment.NewLine);
      //			File.AppendAllText(path, ToDay(Time[0]) + "," + ToTime(Time[0])/100 + "," + Open[0] + "," + High[0] + "," + Low[0] + "," + Close[0]  + "," + Volume[0]+ Environment.NewLine);
      			//	
              }
      
              #region Properties
              #endregion
          }
      }
      I use the strategy script into strategy analyzer and apply it to SPX.XO daily data. I use version 1000.7

      Below is the output

      20110813,1172.87,1189.04,1170.74,1178.81,564038000 0
      20110816,1178.86,1204.49,1178.86,1204.49,427285000 0
      20110817,1204.22,1204.22,1180.53,1192.76,507160000 0
      20110818,1192.89,1208.47,1184.36,1193.89,438834000 0
      20110819,1189.62,1189.62,1131.03,1140.65,323481000 0
      20110820,1140.47,1154.54,1122.05,1123.53,516756000 0
      20110823,1123.55,1145.49,1121.09,1123.82,543626000 0
      20110824,1124.36,1162.35,1124.36,1162.35,501317000 0
      20110825,1162.16,1178.56,1156.3,1177.6,5315310000
      20110826,1176.69,1190.68,1155.47,1159.27,574842000 0
      20110827,1158.85,1181.23,1135.91,1176.8,5035320000
      20110830,1177.91,1210.28,1177.91,1210.08,422807000 0
      20110831,1209.76,1220.1,1195.77,1212.92,4572570000

      The data in historical database is
      Date Open High Low Close Volume
      30/8/2011 1209.76 1220.1 1195.77 1212.92 4572570000
      29/8/2011 1177.91 1210.28 1177.91 1210.08 4228070000
      26/8/2011 1158.85 1181.23 1135.91 1176.8 5035320000
      25/8/2011 1176.69 1190.68 1155.47 1159.27 5748420000
      24/8/2011 1162.16 1178.56 1156.3 1177.6 5315310000
      23/8/2011 1124.36 1162.35 1124.36 1162.35 5013170000
      22/8/2011 1123.55 1145.49 1121.09 1123.82 5436260000
      19/8/2011 1140.47 1154.54 1122.05 1123.53 5167560000
      18/8/2011 1189.62 1189.62 1131.03 1140.65 3234810000
      17/8/2011 1192.89 1208.47 1184.36 1193.89 4388340000
      16/8/2011 1204.22 1204.22 1180.53 1192.76 5071600000
      15/8/2011 1178.86 1204.49 1178.86 1204.49 4272850000
      12/8/2011 1172.87 1189.04 1170.74 1178.81 5640380000

      Notice that the date is shifted by 1 day.

      Comment


        #4
        Hello,

        There was no change in this in these releases.

        This has to do with the session template you are using on the chart you are running this on.

        What session template are you using? Please try something like CME US Index futures ETH or RTH template. The session template wont actually change the data however you need to get that end time away from 12:00AM so that when the offset is applied to the times in the HDM it doesnt push you into tho the next day.

        (You wil notice when you did the export that the data in the chart was also off one day.)

        Let me know if I can be of further assistance.

        Comment


          #5
          I use US Equities RTH for the session template.

          Is there a way for you to send me the 1000.5 version, e.g. through email? I didnt have any problem on that version. I am installing on new computer but I dont have the installer for that version.

          Comment


            #6
            Hello,

            Unfortunately we do not support the .5 release any further or have it available.

            If you email me at support at ninjatrader dot com ATTN: Brett and reference this forum post please include your note and I will take a quick look at whats going on.

            I look forward to assisting you further.

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by Aviram Y, Today, 05:29 AM
            4 responses
            11 views
            0 likes
            Last Post Aviram Y  
            Started by algospoke, 04-17-2024, 06:40 PM
            3 responses
            27 views
            0 likes
            Last Post NinjaTrader_Jesse  
            Started by bmartz, 03-12-2024, 06:12 AM
            3 responses
            31 views
            0 likes
            Last Post bmartz
            by bmartz
             
            Started by gentlebenthebear, Today, 01:30 AM
            1 response
            8 views
            0 likes
            Last Post NinjaTrader_Jesse  
            Started by cls71, Today, 04:45 AM
            1 response
            7 views
            0 likes
            Last Post NinjaTrader_ChelseaB  
            Working...
            X