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 carnitron, Today, 08:42 PM
      0 responses
      5 views
      0 likes
      Last Post carnitron  
      Started by strategist007, Today, 07:51 PM
      0 responses
      6 views
      0 likes
      Last Post strategist007  
      Started by StockTrader88, 03-06-2021, 08:58 AM
      44 responses
      3,974 views
      3 likes
      Last Post jhudas88  
      Started by rbeckmann05, Today, 06:48 PM
      0 responses
      8 views
      0 likes
      Last Post rbeckmann05  
      Started by rhyminkevin, Today, 04:58 PM
      4 responses
      58 views
      0 likes
      Last Post dp8282
      by dp8282
       
      Working...
      X