Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Paint Bars?

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

    Paint Bars?

    Hi
    I Saw Paint Bar Indicator In Trade Station Today And It Was Actually Great To Determine The Short Term Trends ,is There Such A Thing As A Paint Bar In Ninja Trader So I Can Use ?

    Thank You

    #2
    Hello saeed,

    Thank you for your post.

    Unfortunately I am not familiar with that indicator.

    We do have over 100 indicators within the Indicators section of the Support Forum where you may be able to find something similar. These indicators may be downloaded for Free and used within NinjaTrader.

    I have also provided a link to our 3rd Party Add-on partners that may have this indicator available.



    Please let me know if I may be of further assistance.
    Christopher J.NinjaTrader Customer Service

    Comment


      #3
      Paint bars are easy to build!

      Hi saeed,

      of course NinjaTrader has paint bars. You can define an indicator and choose the BarColor and the CandleOutlineColor dependent on any conditions you like. This is an example for thrust bars and small body bars (doji), but of course you can define any trend criteria and set the BarColor and CandleOutlineColor accordingly!

      protected override void OnBarUpdate()

      if (CurrentBar < 2)
      return;
      if (Close[0] > High[1] && Close[0] >= Open[0])
      BarColor=Color.Green;
      else if (Close[0] < Low[1] && Close[0] <= Open[0])
      BarColor = Color.DarkRed;
      else if (Math.Abs(Close[0]-Open[0])<= 0.25*ATR(14)[0])
      BarColor = Color.White;
      else
      BarColor = Color.RoyalBlue;
      if (Close[0] > Open[0])
      CandleOutlineColor = Color.Lime;
      if (Close[0] < Open[0])
      CandleOutlineColor = Color.OrangeRed;

      Comment


        #4
        Yes these indicator are very helpful to me during my work in paint bar.
        Thanks

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        102 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        144 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        71 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by cmoran13, 04-16-2026, 01:02 PM
        0 responses
        125 views
        0 likes
        Last Post cmoran13  
        Started by PaulMohn, 04-10-2026, 11:11 AM
        0 responses
        79 views
        0 likes
        Last Post PaulMohn  
        Working...
        X