Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Toggle candlesticks visibility on button click
Collapse
X
-
Hello singjay,
Setting the BarBrush and CandleOutlineBrush to transparent would hide the candles. You would need to loop through all of the bars on the chart.
Below is a link to a User App Share script that hides the chart bars.
NYSE Advancing Issues/Declining Issues Uses historical tick data to calculate the ^ADV index minus the ^DECL index to give a simulation of the ^ADD index. Requires a data feed that supports indexes and provides data for the ^ADV (NYSE Advancing Issues) and ^DECL (NYSE Declining Issues). Update June 16th, 2020 – Corrected stroke attributes to […]
As well as a link to an example with button clicks.
I need some guidance. I need to create a script that has 3 plots that are public and they plot either a 1 or 0. But I need to create another indicator that has 3 chart buttons that sets these variables. The first indicator needs to get those values from the second indicator depending on the button clicks. Because of using
Chelsea B.NinjaTrader Customer Service
-
Thanks this helped. Btw, the strategy was not hiding all the candles. It was hiding only subsequent candles after the button click, not historical bars. I've to put this part separately in a custom indicator for now. If it works from a strategy please provide a quick sample code, it would help. Thanks.
Comment
-
Hello singjay,
To loop through all bars and set the brush to transparent.
If this is called from a button click or any non-data-driven method, be sure to call TriggerCustomEvent first as demonstrated in the example script I have provided.Code:for (index = 0; index < CurrentBar; index++) { BarBrushes[index] = Brushes.Transparent; }
Chelsea B.NinjaTrader Customer Service
Comment
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