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 CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
71 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
42 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
110 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
190 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
172 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment