Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Plotting an SMA line
Collapse
X
-
Hello cbart_1,
Can you please check if you are receiving any errors on the Log tab of the Control Center when using a displacement value of 2 in your original snippet? There isn't any reason that shouldn't work as well as long as you are ensuring you have enough bars on your chart. Please see our Tips section for information on this:
http://www.ninjatrader.com/support/forum/showthread.php?t=3170
Please try adding the following snippet to the beginning of your code in OnBarUpdate()
You need to ensure you have enough bars on the chart to calculate correctly. If youre looking back 2 bars, you need to check for less than 2... if using 5 you would need to check for less than 5.Code:if (Current Bar < 2) return;
If you're assigning a variable like "displacement" a number, you could also use (if CurrentBar < Displacement) and this will ensure that you're checking for enough bars to meet the displacement value requirement.MatthewNinjaTrader Product Management
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
559 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
324 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 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
546 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
547 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment