Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Display Message On Chart When Bar Type Properties Set Incorrectly
Collapse
X
-
Display Message On Chart When Bar Type Properties Set Incorrectly
I have created a custom bar type and want to display a text message on the chart (instead of the bars) when the properties for the bar type are set incorrectly. I tried to do this with Draw.TextFixed, but that method is not available in BarTypes namespace. Any ideas on how I might go about doing this?Tags: None
-
Thanks Chelsea! Using a ChartStyle makes sense.
If I created a custom ChartStyle for the custom BarType, is there a way to set the custom ChartStyle as a default for the BarType? I know this can be done manually from the Data Series window by saving a preset. Is it also possible to do it in the code for the BarType?
Comment
-
Any thoughts on the followup question in my last post?
Comment
-
Hello gregschr,
So the bar type would need to use an existing property as its own with SetPropertyName(). SetPropertyName() works for bar types as well and I've noted to our development to add this to the Bars Type section of the help guide.
In the BarType file set DefaultChartStyle to your chart style script.
DefaultChartStyle = (ChartStyleType) 80;
Once the property is set, in the Chart Style's OnRender you have access to the Bars object.
Then access the property from the bar object -> BarsPeriod.
Print(chartBars.Bars.BarsPeriod.Value);
And draw this using SharpDX.Direct2D1.RenderTarget.DrawText().
Chelsea B.NinjaTrader Customer Service
Comment
-
Thanks Chelsea!
That was exactly what I needed.
I appreciate the detailed instructions and your help!
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
601 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
347 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 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
559 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
558 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment