Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to prevent a certain calculation to be loaded when CalculateBarClose is FALSE

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

    How to prevent a certain calculation to be loaded when CalculateBarClose is FALSE

    Hi,
    I have a strategy that I found out to be generating better results when ran in CalculateOnBarClose = False

    This is why I am looking to easily and effectively add one additional controller as a criteria to each of the formulas that would result in "False" statement and thus way I will be able to filter out all of the things that I do not need to run while in realtime calculation.

    Any Ideas how I can achieve this?

    Thanks!

    #2
    Hello,

    Thank you for the question.

    You can essentially set a script to CalculateOnBarClose = false but also do some things if it were using true by using FirstTickOfBar.



    Here is a simple example:

    Code:
    protected override void OnBarUpdate()
    {
        if (FirstTickOfBar)
        {
             //code in here is executed only on each first tick of the bar or after the Close of the bar just like CalcualteOnBarClose = true; 
        }
    //anything outside would be processed as CalculateOnBarClose = false; 
    }
    I look forward to being of further assistance.

    Comment


      #3
      Try this to filter your sections of code that only need to run on a tick by tick basis:

      if(!CalculateOnBarClose)
      {
      Do it!
      }
      eDanny
      NinjaTrader Ecosystem Vendor - Integrity Traders

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      563 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      329 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      101 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      547 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      548 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X