Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

filter by candle price movement

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    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.

    #2
    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!

    Comment


      #3
      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


        #4
        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:

        Code:
        if (High[0] >= Low[0] + 102*TickSize)
        {
            BarBrush = Brushes.Blue;
        }
        BarBrush: https://ninjatrader.com/support/help...8/barbrush.htm
        <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


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