Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
ToTime Method
Collapse
X
-
I was given the following code but compile didn't like it:
#region Variables
private int counter = 0; // create the counter
#endregion
protected override void OnBarUpdate()
{
if (Close[0] > Close[1])
counter++; // if the current close is greater than the previous, increment the counter
else
counter = 0; // reset the counter back to 0 because the current close isn't greater than the previous
if (counter == 5)
ExitLong(); // if there have been five consecutive up closes, exit long position
}
Comment
-
Hello,
Thank you for the reply.
I pasted the sample into a strategy but it compiled fine, could you post the whole script instead to see where you have placed this syntax in the file? It may be that this syntax is in a incorrect location.
Either the entire file or the error message would be needed to further identify what your compile error is.
I look forward to being of further assistance.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
649 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
370 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
109 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
574 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
576 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment