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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
47 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
23 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
33 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
51 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
42 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment