Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Plot a variable
Collapse
X
-
Plot a variable
I'm new to ninjatrader and trying to learn ninjascript/c#. I'm trying to create a simple indicator to get started. I have two variables called today and yesterday. I have two plots called blue and white. What is the line of code I would use to assign the each variable to a plot? Any help is appreciated. I've spent hours just trying to figure out this simple task and just can't do it.Tags: None
-
Hello n8dogg59,
In OnStateChange() when State is State.SetDefault add a plot with AddPlot().
In OnBarUpdate() set the current bar's value of that plot by assigning a value to Value[0].
Below is a public link to the help guide on AddPlot() and Value.
AddPlot() - https://ninjatrader.com/support/help...us/addplot.htm
Value - https://ninjatrader.com/support/help...n-us/value.htm
For a demonstration, take a look at the code of the SMA indicator.
Below I am including a link to a forum post with helpful information about getting started with NinjaScript.
Chelsea B.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
571 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
330 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
549 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
549 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment