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

Input Series For Indicator

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

    Input Series For Indicator

    Is it possible to use a different input series for an indicator (other than price)?
    Last edited by CraigC; 06-27-2008, 05:10 PM.

    #2
    Yes, so long as PriceTypeSupported is set to true.

    Comment


      #3
      How would one go about say applying a MACD to Heinken Ashi Bars?

      Comment


        #4
        You can't as price type is not supported on HeikenAshi. Think about it, anything that references High/Low etc.. values directly isn't likely to support price type.

        Comment


          #5
          Originally posted by Gumphrie View Post
          You can't as price type is not supported on HeikenAshi. Think about it, anything that references High/Low etc.. values directly isn't likely to support price type.
          I'm not sure you have understood my intent, I understand the HA code references the high/low values on the chart and as such cannot be given a single 'DataSeries' as input. What I meant was could I say take the close of a HA bar series and use it to calculate a MA for instance.

          Comment


            #6
            You could do that if HeikenAshi exported its values in a Plot or Dataseries, as it doesn't the best option would be to write your own version and then use that with the MA.

            Comment


              #7
              I did something similar to this.

              There's one twist you have to handle, and that is that the HaikenAshi indicator as supplied by NinjaTrader has the the ChartOnly attribute set to true in the Initialize() method.

              In order to call an indicator, ChartOnly must be set to "false".

              Therefore, I created a new copy of the HaikenAshi using "Save As...", naming it HaikenAshiCallable, and I then changed the one line as follows:

              Code:
               ChartOnly = [COLOR=Blue]false[/COLOR];    [COLOR=DarkGreen]// Changed to "false" so indicator can be called from another indicator.[/COLOR]
              Then I compiled the indicator.

              Then I edited the EMA indicator did another "Save As..", calling the result EMA_HiekenAshi, and changed the OnBarUpdate method so it reads as follows:

              Code:
              [COLOR=Blue] protected override void[/COLOR] OnBarUpdate()
              {
                 DataSeries ha_close = HeikenAshiCallable().HAClose;  [COLOR=DarkGreen]// Reference close data series of HeikenAshi indicator.[/COLOR]
              
                 Value.Set( EMA( ha_close, period )[0] );
              }
              Then I compiled it and added it to a chart. It seems to work, but is only slightly different fraom a standard EMA.

              Comment


                #8
                Cheers for that, the MA on HA was just a example, what I was more interested in is the general chaining together of calculations.
                Thanks

                Comment

                Latest Posts

                Collapse

                Topics Statistics Last Post
                Started by sidlercom80, 10-28-2023, 08:49 AM
                172 responses
                2,279 views
                0 likes
                Last Post sidlercom80  
                Started by Irukandji, Yesterday, 02:53 AM
                2 responses
                17 views
                0 likes
                Last Post Irukandji  
                Started by adeelshahzad, Today, 03:54 AM
                0 responses
                4 views
                0 likes
                Last Post adeelshahzad  
                Started by Barry Milan, Yesterday, 10:35 PM
                3 responses
                13 views
                0 likes
                Last Post NinjaTrader_Manfred  
                Started by WeyldFalcon, 12-10-2020, 06:48 PM
                14 responses
                1,431 views
                0 likes
                Last Post Handclap0241  
                Working...
                X