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.

    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 CarlTrading, 03-31-2026, 09:41 PM
      1 response
      68 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      38 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      62 views
      1 like
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      62 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      53 views
      0 likes
      Last Post CarlTrading  
      Working...
      X