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 Haiasi, Today, 06:53 PM
        1 response
        4 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by ScottWalsh, Today, 06:52 PM
        1 response
        10 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by ScottW, Today, 06:09 PM
        1 response
        5 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by ftsc2022, 10-25-2022, 12:03 PM
        5 responses
        256 views
        0 likes
        Last Post KeyonMatthews  
        Started by Board game geek, 10-29-2023, 12:00 PM
        14 responses
        244 views
        0 likes
        Last Post DJ888
        by DJ888
         
        Working...
        X