Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

ADXVMA strategy problem?

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

    ADXVMA strategy problem?

    I'm using ADXVMA Period 2 in a strategy. It plots fine when used only as indicator but as soon as I try to use in an strategy it plots differently. The red line is the normal ADXVMA period 2 plot and the blue line is the strategy one that is off for some reason. Any help would be much appreciated.
    Attached Files

    #2
    Please post the code. Both indicator and strategy.
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by NinjaTrader_Josh View Post
      Please post the code. Both indicator and strategy.
      Okay. thanks for the help
      Attached Files

      Comment


        #4
        We will look into it and get back to you.
        Josh P.NinjaTrader Customer Service

        Comment


          #5
          Any idea why it changes when used in a strategy?

          Comment


            #6
            Ninja B,

            This is the solution. You should not make variable assignments in the Initialize() method.

            Cut these lines from the Initalize() method:
            Code:
            WeightDX = ADXPeriod;
            WeightDM = ADXPeriod;
            WeightDI = ADXPeriod;
            ChandeEMA = ADXPeriod;
            Move them to the OnBarUpdate() method:
            Code:
            if (CurrentBar == 0)
            {
                 WeightDX = ADXPeriod;
                 WeightDM = ADXPeriod;
                 WeightDI = ADXPeriod;
                 ChandeEMA = ADXPeriod;
            }
            Last edited by NinjaTrader_JoshP; 09-15-2008, 09:39 AM.
            Josh P.NinjaTrader Customer Service

            Comment


              #7
              Thanks so much Josh. It works now. Thank you again sir. It's very much appreciated.

              Comment


                #8
                Hi,
                can anyone tell me whats the different between
                ADXVMA(6).[0] and ADXVMA(6).ADXVMAPlot[0]
                if using it in a strategy ?
                max-td

                Comment


                  #9
                  Unfortunately I could not comment on how to use ADXVMA() since it is not our indicators. I suggest you print values for both and just look at it from a chart to see which one gives you the values you are after.
                  Josh P.NinjaTrader Customer Service

                  Comment


                    #10
                    ok thanks Josh

                    Comment


                      #11
                      Can jou help me, where can I download the indicator ADXVMA-sharky

                      Greetings
                      Aart1

                      Comment


                        #12
                        Welcome to our forums Aart1 - have you checked our sharing section here?

                        Comment

                        Latest Posts

                        Collapse

                        Topics Statistics Last Post
                        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
                        0 responses
                        633 views
                        0 likes
                        Last Post Geovanny Suaza  
                        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
                        0 responses
                        364 views
                        1 like
                        Last Post Geovanny Suaza  
                        Started by Mindset, 02-09-2026, 11:44 AM
                        0 responses
                        105 views
                        0 likes
                        Last Post Mindset
                        by Mindset
                         
                        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
                        0 responses
                        567 views
                        1 like
                        Last Post Geovanny Suaza  
                        Started by RFrosty, 01-28-2026, 06:49 PM
                        0 responses
                        568 views
                        1 like
                        Last Post RFrosty
                        by RFrosty
                         
                        Working...
                        X