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!
    Manfred F.NinjaTrader Customer Service

    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
        Brandon H.NinjaTrader Customer Service

        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 Jimmyk, 01-26-2018, 05:19 AM
          6 responses
          835 views
          0 likes
          Last Post emuns
          by emuns
           
          Started by jxs_xrj, 01-12-2020, 09:49 AM
          6 responses
          3,291 views
          1 like
          Last Post jgualdronc  
          Started by Touch-Ups, Today, 10:36 AM
          0 responses
          10 views
          0 likes
          Last Post Touch-Ups  
          Started by geddyisodin, 04-25-2024, 05:20 AM
          11 responses
          62 views
          0 likes
          Last Post halgo_boulder  
          Started by Option Whisperer, Today, 09:55 AM
          0 responses
          8 views
          0 likes
          Last Post Option Whisperer  
          Working...
          X