Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Hold Closing Price to a Constant Value

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

    Hold Closing Price to a Constant Value

    I am wanting to assign the closing price of a bar to a double variable when certain conditions exist, but I do not want the value to be updated each time the closing price is updated. I want the value to be held constant and used for other calculations in the code. How is the best way to accomplish this?

    #2
    Hello Trader_781,

    Welcome to the NinjaTrader forums!

    You could use a bool to only set the value once.

    private double myDoubleValue;
    private bool doubleSet;

    In OnBarUpdate:

    Code:
    if (doubleSet == false /* && other conditions to set value */)
    {
    myDoubleValue = Close[0];
    doubleSet = true;
    }
    Also, below is a link to a forum post with helpful resources on getting started with C# and NinjaScript.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Thanks Chelsea B. This information is helpful.

      Comment

      Latest Posts

      Collapse

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