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 argusthome, 03-08-2026, 10:06 AM
      0 responses
      76 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      45 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      26 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      32 views
      0 likes
      Last Post TheRealMorford  
      Started by Mindset, 02-28-2026, 06:16 AM
      0 responses
      62 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X