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 BarzTrading, Today, 07:25 AM
                2 responses
                14 views
                1 like
                Last Post BarzTrading  
                Started by devatechnologies, 04-14-2024, 02:58 PM
                3 responses
                19 views
                0 likes
                Last Post NinjaTrader_BrandonH  
                Started by tkaboris, Today, 08:01 AM
                0 responses
                3 views
                0 likes
                Last Post tkaboris  
                Started by EB Worx, 04-04-2023, 02:34 AM
                7 responses
                162 views
                0 likes
                Last Post VFI26
                by VFI26
                 
                Started by Mizzouman1, Today, 07:35 AM
                1 response
                10 views
                0 likes
                Last Post NinjaTrader_Gaby  
                Working...
                X