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 argusthome, 03-08-2026, 10:06 AM
|
0 responses
71 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
43 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
25 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
28 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
56 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment