Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

problems with granularity

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

    problems with granularity

    What am I doing wrong here? Assuming that the primary bar is a daily bar and the secondary bar is a 10 min bar. I'm trying to buy at the next daily open based on signal generated from current daily bar and liquidate if the 10 min bar violates the previous bar's low:

    protected override void OnBarUpdate()
    {
    if(BarsInProgress==0)
    {
    if(Close[0]>High[1])
    {
    EnterLong("buy");
    }
    }

    if(BarsInProgress==1)
    {
    if(Closes[1][0]<Low[0])
    {
    ExitLong(1,1,"sell","buy");
    }
    }
    }

    #2
    d.allen101, please clarify which behavior you are seing with your code? Please try using Lows[0][0] in your Exit statement to access the daily bar low.
    BertrandNinjaTrader Customer Service

    Comment


      #3
      i'll figure it out myself bertrand, i was just being lazy...

      thx

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by rajendrasubedi2023, Today, 09:50 AM
      0 responses
      6 views
      0 likes
      Last Post rajendrasubedi2023  
      Started by ender_wiggum, Today, 09:50 AM
      0 responses
      2 views
      0 likes
      Last Post ender_wiggum  
      Started by bmartz, Today, 09:30 AM
      1 response
      7 views
      0 likes
      Last Post NinjaTrader_Erick  
      Started by geddyisodin, Today, 05:20 AM
      3 responses
      23 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by lorem, Today, 09:18 AM
      1 response
      5 views
      0 likes
      Last Post lorem
      by lorem
       
      Working...
      X