Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
filter by candle price movement
Collapse
X
-
filter by candle price movement
is there a way to see a chart with only candles of a certain price volume? for example, only candles with 102 ticks or more.Tags: None
-
Hello SteveReiza,
Thank you very much for your post.
Unfortunately, I am not aware of an existing script that would filter the candles on a regular chart based on volume.
If you are interested in creating this script yourself or having a third party assist you, please don't hesitate to let me know. I would be happy to send you further information!
-
thank you for the reply. yes i'd like to develop a script that can do that. it would be really helpful. i know how to describe it: high greater or equal to low + 102 ticks. but, not sure where to start or go with it.
Comment
-
Hello SteveReiza,
Thanks for your notes.
To clarify, are you trying to detect if a bar on the chart has a certain volume?
Do you want to change the color of bars on the chart that have a certain volume?
Are you wanting to create your own custom BarsType?
If you are wanting to detect is a bar on the chart has the specific calculation you shared and change the bar color, you could consider creating a condition that checks if (High[0] >= Low[0] + 102*TickSize) and call BarBrush within that condition.
For example:
BarBrush: https://ninjatrader.com/support/help...8/barbrush.htmCode:if (High[0] >= Low[0] + 102*TickSize) { BarBrush = Brushes.Blue; }<span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>
Comment
-
thanks for the reply. that sounds rad. i could then custom filter the trading time to see as i scroll the blue bar within the timeframe i'm thinking. appreciate the guidance.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
76 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
44 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|
||
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
168 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
101 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
165 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|

Comment