Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

AddRenko new brick

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

    AddRenko new brick

    Hello,

    I am figuring out how to know when a brick is closed when using AddRenko() in a ninja script strategy and if the value of the close is higher or lower than the previous brick. Can I use Close[0]?

    Can you provide some sample code?

    #2
    did you try https://ninjatraderecosystem.com/use...nko-bartype-8/ examples?

    Comment


      #3
      Hi guillembm, thanks for your post.

      If your script runs OnBarClose, you can detect BarsInProgress == 1 (assuming the Renko series is the only added series.) e.g.

      Code:
      OnBarUpdate()
      {
      
          if(BarsInProgress == 1)
          {
              if(Close[0] < Close[1]) Print("Close[0] < Close[1] " + Time[0]);
          }
      
      }

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      101 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      144 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      69 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      125 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      78 views
      0 likes
      Last Post PaulMohn  
      Working...
      X