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 argusthome, 03-08-2026, 10:06 AM
        0 responses
        110 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        59 views
        0 likes
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        37 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Started by TheRealMorford, 03-05-2026, 06:15 PM
        0 responses
        41 views
        0 likes
        Last Post TheRealMorford  
        Started by Mindset, 02-28-2026, 06:16 AM
        0 responses
        78 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Working...
        X