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