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 Mindset, 04-21-2026, 06:46 AM
|
0 responses
57 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
78 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
39 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
101 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
61 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment