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 CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
237 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
152 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
163 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
246 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
199 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment