Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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?

                        BertrandNinjaTrader Customer Service

                        Comment

                        Latest Posts

                        Collapse

                        Topics Statistics Last Post
                        Started by zstheorist, Today, 07:52 PM
                        0 responses
                        5 views
                        0 likes
                        Last Post zstheorist  
                        Started by pmachiraju, 11-01-2023, 04:46 AM
                        8 responses
                        150 views
                        0 likes
                        Last Post rehmans
                        by rehmans
                         
                        Started by mattbsea, Today, 05:44 PM
                        0 responses
                        6 views
                        0 likes
                        Last Post mattbsea  
                        Started by RideMe, 04-07-2024, 04:54 PM
                        6 responses
                        33 views
                        0 likes
                        Last Post RideMe
                        by RideMe
                         
                        Started by tkaboris, Today, 05:13 PM
                        0 responses
                        6 views
                        0 likes
                        Last Post tkaboris  
                        Working...
                        X