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

Referencing daily data within an intraday script

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

    Referencing daily data within an intraday script

    Forgive me of this has been asked before, but after reeading through the manual and doing a quick search of these forums, I unfortunately did not find the answer to my following problem.

    I have an intraday script that runs using 5 minute data. However, the conditions on whether a trade is taken on any particular day is dependent on conditions dependent on daily data. Specifically, within my 5 minute data script I would like to find the ATR and Bollinger Bands of daily data which have look back periods of 20 days. I would appreciate some sample code of how this could be done.

    Thanks,
    Rick

    #2
    After some thought, would the following work?
    Code:
    // in the variables section
    private double atr20, boll20;
    private boolean canTrade;
     
    protected override void Initialize()
    {
     Add(PeriodType.Day, 1);
     atr20 = ATR(BarsArray[1], 20)[0];
     boll20 = Bollinger(BarsArray[1], 2, 20).Upper[0];
     
     // example expression
     canTrade = atr20 > boll20;
    }
     
    protected override void OnBarUpdate()
    {
     if (BarsInProgress != 0 || !canTrade)
      return;
    }
    Is this the right way to do this? Also how do I make sure that NT sees at least 20 days of my 5 minute data for proper determination of the indicator values?

    Comment


      #3
      Almost there. You would need to check the condition in OnBarUpdate like:
      Code:
      protected override void OnBarUpdate()
      {
       if (BarsInProgress != 0 
          || ATR(BarsArray[1], 20)[0} <= Bollinger(BarsArray[1], 2, 20).Upper[0])
        return;
      }

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Irukandji, Yesterday, 02:53 AM
      2 responses
      17 views
      0 likes
      Last Post Irukandji  
      Started by adeelshahzad, Today, 03:54 AM
      0 responses
      3 views
      0 likes
      Last Post adeelshahzad  
      Started by CortexZenUSA, Today, 12:53 AM
      0 responses
      3 views
      0 likes
      Last Post CortexZenUSA  
      Started by CortexZenUSA, Today, 12:46 AM
      0 responses
      1 view
      0 likes
      Last Post CortexZenUSA  
      Started by usazencortex, Today, 12:43 AM
      0 responses
      5 views
      0 likes
      Last Post usazencortex  
      Working...
      X