Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
check for candlestick bartype only
Collapse
X
-
check for candlestick bartype only
Hi, I want to print something when chart bartype is only candle stick, any other bartype should retrun false. I cannot find anything, to get a bool true, if chart bartype is only candlstick bar type. Please advise.Tags: None
-
Hello asmmbillah, thanks for your post.
This is not the BarsType, but the ChartStyle. We have an example on how to identify the chart style being used here:
Please let me know if I can assist any further.
The NinjaTrader Ecosystem website is for educational and informational purposes only and should not be considered a solicitation to buy or sell a futures contract or make any other type of investment decision. The add-ons listed on this website are not to be considered a recommendation and it is the reader's responsibility to evaluate any product, service, or company. NinjaTrader Ecosystem LLC is not responsible for the accuracy or content of any product, service or company linked to on this website.
-
thanks, but that does not give a clear idea about current chart style. I am going to create a bool for if statement. any advice?
Comment
-
Hello asmmbillah, thanks for the follow up.
My apologies, that was an oversight on my part. You can get the ChartStyle like this (within the OnStateChanged method):
else if (State == State.DataLoaded)
{
if(ChartBars != null)
{
Print(ChartBars.Properties.ChartStyle);
}
}
Please let me know if you have any further questions.
Comment
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
70 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
152 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
162 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
100 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
288 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment