Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

ADR indicator

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

    ADR indicator

    Hi all, looking for an Average Daily Range counter. Had one in NT7 cant find a NT 8 as of yet.

    #2
    I found several indicators when searching the forums that may be useful for you. Please browse the first few pages of the search for 'average range' below to see if any of these indicators meet your needs:



    If you find the NinjaTrader 7 indicator you were using but not a comparable NinjaTrader 8 version, can you provide the link to the NinjaTrader 7 indicator so I better understand exactly what you're seeking?

    Comment


      #3
      The indicator computes the average of daily range.
      It takes the High and Low of each day and computes the range of each day. Then it computes the average of those ranges during a period, ie the last 10 and last 20 trading days.

      Comment


        #4
        I assume your response implies that looking through my search and searching yourself did not result in any comparable indicators for what you're seeking?

        I was able to create an analogous plot of what you're describing by adding the built in 'ATR' indicator to a daily chart. Here is an example:



        Is this what you're looking for?

        Comment


          #5
          Sorry for delay in replying, had some personal issues to take care of.
          For an idea of what I mean, take a look at the following;

          Day trading futures and forex with NinjaTrader indicators and trading software. Learn more at http://www.indicatorwarehouse.com The Day Ranger Shows You Aver...



          Comment


            #6
            Hello,

            The product referenced in the video can be found from a NinjaTrader Ecosystem vendor at the following link: https://www.indicatorwarehouse.com/n...or/day-ranger/

            Originally posted by falcs View Post
            Sorry for delay in replying, had some personal issues to take care of.
            For an idea of what I mean, take a look at the following;

            Day trading futures and forex with NinjaTrader indicators and trading software. Learn more at http://www.indicatorwarehouse.com The Day Ranger Shows You Aver...


            Jared M.NinjaTrader Customer Service

            Comment


              #7
              This is an ADR indicator for ninjatrader 8 and it even sends notifications when the ADR is reached, also notifies of high reversal probabilities: https://trading2society.com/t2ssmartadr
              Last edited by kmlneo; 03-12-2019, 03:35 AM.

              Comment


                #8
                Hi,
                Here is a free one for version 8. I think it's ok but this is the first time I ever wrote something for Ninjatrader. I didn't care to export it, just paste the code here below.
                ------------

                namespace NinjaTrader.NinjaScript.Indicators
                {
                public class ADR : Indicator
                {
                protected override void OnStateChange()
                {
                if (State == State.SetDefaults)
                {
                Description = @"Enter the description for your new custom Indicator here.";
                Name = "ADR";
                Calculate = Calculate.OnBarClose;
                IsOverlay = false;
                DisplayInDataBox = true;
                DrawOnPricePanel = true;
                DrawHorizontalGridLines = true;
                DrawVerticalGridLines = true;
                PaintPriceMarkers = true;
                ScaleJustification = NinjaTrader.Gui.Chart.ScaleJustification.Right;
                //Disable this property if your indicator requires custom values that cumulate with each new market data event.
                //See Help Guide for additional information.
                IsSuspendedWhileInactive = true;
                Lookback = 20;
                AddPlot(Brushes.Green, "Value");
                }
                else if (State == State.Configure)
                {
                }
                }

                protected override void OnBarUpdate()
                {
                if (CurrentBar < Lookback)
                return;
                else
                {
                double sum = 0;
                for (int i=0; i<Lookback; i++)
                sum = sum + (High[i]/Low[i]);
                Value[0] = 100*((sum/Lookback)-1);
                }
                }

                #region Properties
                [NinjaScriptProperty]
                [Range(1, int.MaxValue)]
                [Display(Name="Lookback", Order=1, GroupName="Parameters")]
                public int Lookback
                { get; set; }
                #endregion

                }
                }

                Comment


                  #9
                  #falcs
                  See attached
                  I believe it does what you're wanting.
                  Have been using it a long time without problems
                  KR
                  Attached Files

                  Comment


                    #10
                    Hi all why doesn't NT8 have a built in ADR=Average Daily Range indicator?
                    Does anyone have one to share that will plot the ADR High and Low on the price chart?
                    Thanks in advance


                    I want to have the ADR High and Low plotted on the chart, like this(I manually put these lines on the chart) for the example
                    Click image for larger version  Name:	exampleADR plot on chart.jpg Views:	0 Size:	117.9 KB ID:	1201734
                    Last edited by sonia0101; 05-16-2022, 05:38 PM.

                    Comment


                      #11
                      #sonia0101
                      See attached,. Not simply what you want, but may be helpful.
                      Not mine, never used it, publicly available on that other well-known repository of such things. You might want to check out the Notes there if you're minded to use it.

                      Alternatively pop over to the coding part of the forum along with Cory's I posted above and ask someone to help you add painting a couple of lines to that one - can't be that hard, albeit above my pay grade.

                      LizardIndicators also have an indicator that draws ADR & noise projections etc. Pay Lizard a small fee. or join FIO Elite to download.
                      I have no affiliations to anything or one, just spreading the love.
                      Best,
                      Attached Files
                      Last edited by brucerobinson; 05-17-2022, 02:18 PM.

                      Comment


                        #12
                        Hello brucerobinson,
                        I downloaded a file you posted on the forum the coryadr file and i cant seem to get it to plot anything on the charts? also I cant get it to pull up on the ninja script editor to delete. would you have any idea how i could use or delete the file?? thanks.​

                        Comment


                          #13
                          Originally posted by kmlneo View Post
                          This is an ADR indicator for ninjatrader 8 and it even sends notifications when the ADR is reached, also notifies of high reversal probabilities: https://trading2society.com/t2ssmartadr
                          whatever you do, don't pay for an ADR indicator. If there is a machine ID change they will undoubtedly make you pay to change the license. Lizardindicators has a free version which works as it should. Not only that it gives you yesterdays High and Low and other useful info for day trading.

                          Comment


                            #14
                            bearring0 - I replied to your PM
                            Best

                            Comment

                            Latest Posts

                            Collapse

                            Topics Statistics Last Post
                            Started by Jon17, Today, 04:33 PM
                            0 responses
                            1 view
                            0 likes
                            Last Post Jon17
                            by Jon17
                             
                            Started by Javierw.ok, Today, 04:12 PM
                            0 responses
                            6 views
                            0 likes
                            Last Post Javierw.ok  
                            Started by timmbbo, Today, 08:59 AM
                            2 responses
                            10 views
                            0 likes
                            Last Post bltdavid  
                            Started by alifarahani, Today, 09:40 AM
                            6 responses
                            41 views
                            0 likes
                            Last Post alifarahani  
                            Started by Waxavi, Today, 02:10 AM
                            1 response
                            20 views
                            0 likes
                            Last Post NinjaTrader_LuisH  
                            Working...
                            X