Since the source code is unavailable I don't seem to have any ability to extrapolate the syntax for changing the bar colors.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Order Flow Cumalative Delta Color Customization
Collapse
X
-
Order Flow Cumalative Delta Color Customization
I need some help with the correct syntax for changing the color of bullish bars in the Order Flow Cumulative Delta indicators. I am color blind, so the default colors, red and lime green, look exactly the same to me when they are adjacent. When I add a strategy to a chart I need to be able to adjust the colors in the strategy code.
Since the source code is unavailable I don't seem to have any ability to extrapolate the syntax for changing the bar colors.Tags: None
-
Hello liquid150,
The 'Color for down bars' and 'Color for up bars' can be set in the Indicator parameters by right-clicking the chart and selecting Indicators.
Below is a public link to the help guide on modifying indicator parameters.
In a NinjaScript Strategy, the .DownBrush and .UpBrush can be set as properties once you have an instance of the indicator.
For example:
Code:private OrderFlowCumulativeDelta myDelta; protected override void OnStateChange() { if (State == State.SetDefaults) { Name = "MyIndicatorName"; } else if (State == State.Configure) { AddDataSeries(Data.BarsPeriodType.Tick, 1); } else if (State == State.DataLoaded) { myDelta = OrderFlowCumulativeDelta(BarsArray[0], CumulativeDeltaType.BidAsk, CumulativeDeltaPeriod.Session, 0); myDelta.DownBrush = Brushes.Pink; myDelta.UpBrush = Brushes.Blue; AddChartIndicator(myDelta); } }Chelsea B.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
63 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
35 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
198 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
364 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
283 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment