Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Help with Strategy
Collapse
X
-
Hello mestril,
A bool has a true or false value can be changed when a condition is true and used to stop an event from happening multiple times until the bool is set back to the original value.
For example:
private bool myBool = false;
if (/* some condition to set the bool back*/)
{
myBool = false;
}
if (myBool == false /* && other conditions for action here */)
{
myBool = true;
// execution action here
}
With this the bool would bet set to true to stop the action, and then set back to false to allow the action to happen again.
Below is a public link to a 3rd party educational site on bool.
As well as a link to a forum post with helpful information about getting started with NinjaScript.
https://ninjatrader.com/support/foru...040#post786040
Also, below is a link to examples of a breakeven with the Strategy Builder.
As well as a more complex script.
As a tip, below is a link to a forum post with steps to export a script so this may be shared with recipients.
https://ninjatrader.com/support/foru...06#post1054106Chelsea B.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
41 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
124 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
64 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
41 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
46 views
0 likes
|
Last Post
|

Comment