Announcement

Collapse
No announcement yet.

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 Hwop38, 05-04-2026, 07:02 PM
                0 responses
                161 views
                0 likes
                Last Post Hwop38
                by Hwop38
                 
                Started by CaptainJack, 04-24-2026, 11:07 PM
                0 responses
                311 views
                0 likes
                Last Post CaptainJack  
                Started by Mindset, 04-21-2026, 06:46 AM
                0 responses
                245 views
                0 likes
                Last Post Mindset
                by Mindset
                 
                Started by M4ndoo, 04-20-2026, 05:21 PM
                0 responses
                350 views
                0 likes
                Last Post M4ndoo
                by M4ndoo
                 
                Started by M4ndoo, 04-19-2026, 05:54 PM
                0 responses
                179 views
                0 likes
                Last Post M4ndoo
                by M4ndoo
                 
                Working...
                X