Also, on a chart, can I change the color from the default current price marker? Mine is currently black on a chart with a white background.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Change price marker color?
Collapse
X
-
Change price marker color?
On a chart, is there a way to programatically change the color of the "current price" marker. If certain conditions exist, as determined by an indicator, can I change the color of the marker which indicates the current price.
Also, on a chart, can I change the color from the default current price marker? Mine is currently black on a chart with a white background.Tags: None
-
I change it like this in NT8 in state.Transition
private void SetMarkerColors()
{
try
{
ChartControl.Dispatcher.InvokeAsync((() =>
{
var chartWindow = Window.GetWindow(this.ChartControl.Parent) as Chart;
if (chartWindow == null)
{
Print("chartWindow == null inside text markers");
return;
}
foreach (var obj in chartWindow.ActiveChartControl.ChartObjects)
{
var trade = obj as ChartBars;
if (trade != null)
{
trade.Properties.LongExecutionBrush = _long2Color;
trade.Properties.ShortExecutionBrush = _short2Color;
}
}
}));
}
catch (Exception e)
{
Print(e + " Could not set marker colors.");
throw;
}
}
Comment
-
Hello tradealgo,
While ChartBar properties are not guaranteed to take affect, these are documented in the help guide.
https://ninjatrader.com/support/help...properties.htm
You may find the code placed in State.DataLoaded a bit smaller.
Code:if (ChartBars != null) { ChartControl.Dispatcher.InvokeAsync(() => { ChartBars.Properties.LongExecutionBrush = Brushes.Blue; ChartBars.Properties.ShortExecutionBrush = Brushes.Yellow }); }Chelsea B.NinjaTrader Customer Service
Comment
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
331 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
550 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment