Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Hold Closing Price to a Constant Value
Collapse
X
-
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?
Tags: None
-
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:
Also, below is a link to a forum post with helpful resources on getting started with C# and NinjaScript.Code:if (doubleSet == false /* && other conditions to set value */) { myDoubleValue = Close[0]; doubleSet = true; }
Chelsea B.NinjaTrader Customer Service
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
12 views
0 likes
|
Last Post
by kinfxhk
07-14-2026, 09:39 AM
|
||
|
Started by kinfxhk, 07-13-2026, 10:18 AM
|
0 responses
59 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 10:18 AM
|
||
|
Started by kinfxhk, 07-13-2026, 09:50 AM
|
0 responses
41 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
47 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 07:21 AM
|
||
|
Started by kinfxhk, 07-11-2026, 02:11 AM
|
0 responses
38 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|

Comment