How can we apply it to OHLC bars?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
ChartStyle From Candlestick Bars to OHLC Bars
Collapse
X
-
ChartStyle From Candlestick Bars to OHLC Bars
I have got this ChartStyle in attachment which works for Candlestick Bars (it allows for custom coloring of wicks)
How can we apply it to OHLC bars? -
Hello Chris and thanks for the suggestion.
I found that the CandleStyle ChartStyle (built in NT8) uses
in OnStateChangeCode:ChartStyleType = ChartStyleType.CandleStick;
Code:protected override void OnStateChange() { if (State == State.SetDefaults) { Name = Custom.Resource.NinjaScriptChartStyleCandlestick; ChartStyleType = ChartStyleType.CandleStick;
The bbb ChartStyle shared in previous post uses
custom codeCode:ChartStyleType = (ChartStyleType) 122345;
Code:protected override void OnStateChange() { if (State == State.SetDefaults) { Name = @"bbb"; Description = "Plots customizable outline, wicks and bar opacity Candlesticks"; ChartStyleType = (ChartStyleType) 122345;
And the OhlcStyle ChartStyle (built in NT8) uses
in OnStateChangeCode:ChartStyleType = ChartStyleType.OHLC
Code:protected override void OnStateChange() { if (State == State.SetDefaults) { Name = Custom.Resource.NinjaScriptChartStyleOHLC; ChartStyleType = ChartStyleType.OHLC
What would you recommend to get the OhlcStyle applied to the bbb ChartStyle?
I though of
custom codeCode:ChartStyleType = (ChartStyleType.OHLC) 122345;
Is this correct? If not, what else would you recommend?Code:protected override void OnStateChange() { if (State == State.SetDefaults) { Name = @"bbb"; Description = "Plots customizable outline, wicks and bar opacity Candlesticks"; ChartStyleType = (ChartStyleType.OHLC) 122345;
Comment
-
Hi Paul, thanks for your reply.
The ChartStyleType is used to uniquely identify a chart style, it does not apply other properties from other chart style types. See the documentation here:
You would need similar logic from the CandleStick chart style type within your custom chart style to replicate its visual style. I recommended a way to make a copy of the script in my other post.
Best regards,
-ChrisL
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
292 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
189 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
185 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
271 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
219 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment