- Cleapicks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
adding a flatline plot type
Collapse
X
-
adding a flatline plot type
I would like to suggest NinjaTrader to add a new plot type which is similar to the PLOTTYPE_FLATLINES in eSignal EFS. Basically when an indicator line (i.e. resistance/support line) changes very fast so that it changes value at each bar, the line is drawn like a staircase instead of connecting the value at each bar with a line.
- CleapicksTags: None
-
Could you consider adding "Flatlines" as a new plot style in the future release. When using "Square", the short vertical lines connecting the points where the horizontal R/S line jumps seem really distracting and annoying.
In the attached example, the red and green lines are resistance and support lines. You can see how annoying those vertical lines are. Whithout them, the chart would look much cleaner.
Originally posted by NinjaTrader_Ray View PostTry using the "Square" plot style, not exact but similar.
Comment
-
Great, it seems Hash style is what I was looking for although it draws with dashed lines instead of solid lines in eSignal EFS. Anyway it is better than the square style when drawing R/S lines. Thanks, Ben.
Originally posted by NinjaTrader_Ben View PostHello,
Did you try the hash plot style?
Comment
-
Hello Ben,
PlotStyle does not contain a definition for "Solid". The following code can not be compiled. What is wrong in my code? Or Solid is not defined?
Add(new Plot(new Pen(Color.Blue, 2), PlotStyle.solid, "Plot0"));
Originally posted by NinjaTrader_Ben View PostHello,
You can also change the Dash style to solid or dashed.
Comment
-
Hello,
The reason it will not compile is that "PlotStyle.solid" is not a valid parameter. Please see the following link for valid parameter for creating a plot:
Try something like this for a solid line:
Add(new Plot(Color.FromKnownColor(KnownColor.Orange), PlotStyle.Line, "Plot0"));DenNinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
40 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
26 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
44 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
37 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment