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 Brevo, Today, 01:45 AM
        0 responses
        6 views
        0 likes
        Last Post Brevo
        by Brevo
         
        Started by aussugardefender, Today, 01:07 AM
        0 responses
        5 views
        0 likes
        Last Post aussugardefender  
        Started by pvincent, 06-23-2022, 12:53 PM
        14 responses
        242 views
        0 likes
        Last Post Nyman
        by Nyman
         
        Started by TraderG23, 12-08-2023, 07:56 AM
        9 responses
        384 views
        1 like
        Last Post Gavini
        by Gavini
         
        Started by oviejo, Today, 12:28 AM
        0 responses
        6 views
        0 likes
        Last Post oviejo
        by oviejo
         
        Working...
        X