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 CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
475 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
316 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
253 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
340 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
305 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment