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 sjsj2732, Yesterday, 04:31 AM
|
0 responses
36 views
0 likes
|
Last Post
by sjsj2732
Yesterday, 04:31 AM
|
||
|
Started by NullPointStrategies, 03-13-2026, 05:17 AM
|
0 responses
287 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
288 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
134 views
1 like
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
95 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|

Comment