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

Indicators work by themselves, not when nested

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

    #16
    Chart for NT7 indicators together
    Attached Files

    Comment


      #17
      Indicators 1 NT7

      Code:
                              if (CurrentBar == 0)
      			
      			return;
      			
      			
      			numerator.Set(Close[0] - SMA(Close, Range)[0]); 
      			denominator.Set(StdDev(Close, Range)[0]);
      			
      			if
      				(denominator[0].Compare(0, 0.000000000001) == 0)// Check to make sure you are not dividing by zero
      				Z.Set(CurrentBar == 0 ? 50 : Z[1]);
      			else
      				Z.Set(numerator[0] / denominator[0]);
      				//Print("Bar "+CurrentBar.ToString()+" :"+Z[0].ToString());

      Comment


        #18
        Indicator 2 NT7

        Code:
                                for(n=i0;n<=i0+p;n++)
        			{
        				sum=0;
        				for(kk=1;kk<=degree;kk++)
        				{
        				sum+=x[kk+1]*Math.Pow(n,kk);
        				}
        				Fx.Set(n,x[1]+sum);
        				//if(Fx[n] == Fx[0])
        				//{Print("Bar "+CurrentBar.ToString()+" :"+Fx[0].ToString());}
        			}

        Comment


          #19
          Also getting erroneous output from indicator 2 as input in system StdDev in NT8.......
          Attached Files
          Last edited by ericson; 02-02-2017, 08:19 AM.

          Comment


            #20
            Indicator 2 as input using system NT8 EMA, works.

            system WMA, diagonal line, values extremely high, incorrect.

            system SMA, extremely low number horizontal on chart

            Comment


              #21
              If i change SMA to EMA in indicator 1, indicator 2 as input, the pattern is similar, but values are way off.

              Comment


                #22
                LOL, FIXED

                Code:
                //if (CurrentBar == 0)
                			if( CurrentBar < range)
                			{return;}

                Comment

                Latest Posts

                Collapse

                Topics Statistics Last Post
                Started by mgco4you, Today, 09:46 PM
                1 response
                3 views
                0 likes
                Last Post NinjaTrader_Manfred  
                Started by wzgy0920, Today, 09:53 PM
                0 responses
                3 views
                0 likes
                Last Post wzgy0920  
                Started by Rapine Heihei, Today, 08:19 PM
                1 response
                8 views
                0 likes
                Last Post NinjaTrader_Manfred  
                Started by Rapine Heihei, Today, 08:25 PM
                0 responses
                6 views
                0 likes
                Last Post Rapine Heihei  
                Started by f.saeidi, Today, 08:01 PM
                1 response
                9 views
                0 likes
                Last Post NinjaTrader_Manfred  
                Working...
                X