Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Need Code Help for MA

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

    #16
    ...

    It is showing me the current price in the MA window, I need it show me a "1" for inside bar or a 0 for not an inside bar, his screen shot does that... don't know why it won't for me...

    Comment


      #17
      Hi tshirtdeal,

      Try restarting NinjaTrader and re-applying the indicator. You will see an error in the log tab.
      The following link describes the steps to resolve this error - http://www.ninjatrader.com/support/f...ead.php?t=3170
      TimNinjaTrader Customer Service

      Comment


        #18
        Thanks Tim

        learn something new everyday I guess, seems to be working, i got to learn this stuff better, that was so frustrating for me:

        anyway, this is what I did and seems to work... make sense to you?

        if(High[0] <= High[Math.Min(CurrentBar, 1)] && Low[0] >= Low[Math.Min(CurrentBar, 1)])

        {
        Plot0.Set(1);
        }
         
        else
        {
        Plot0.Set(0);
        }

        Comment


          #19
          Hi tshirtdeal,

          Yes, that should work for you, alternatively you can do...

          if (CurrentBar < 1)
          return;

          if(High[0] <= High[1] && Low[0] >= Low[1])
          TimNinjaTrader Customer Service

          Comment


            #20
            Thanks Tim

            Thanks for all the help Tim, was going borderline crazy on that!

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by llanqui, Today, 03:51 PM
            0 responses
            4 views
            0 likes
            Last Post llanqui
            by llanqui
             
            Started by Quanto, 04-17-2024, 10:43 AM
            2 responses
            22 views
            0 likes
            Last Post Quanto
            by Quanto
             
            Started by Irukandji, Today, 03:06 PM
            0 responses
            7 views
            0 likes
            Last Post Irukandji  
            Started by cmtjoancolmenero, 04-25-2024, 03:58 PM
            17 responses
            95 views
            0 likes
            Last Post cmtjoancolmenero  
            Started by nleitman, Today, 11:46 AM
            8 responses
            20 views
            0 likes
            Last Post nleitman  
            Working...
            X