Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Indicator on indicator

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

    Indicator on indicator

    If I write an indicator that calls another indicator as part of it's main function, and the called indicator defaults to calculating at end of bar, will the called indicator always calculate at bar's end or will it, if I set my calling indicator to update intrabar, update intrabar?

    #2
    It will update intrabar, but as the indicator it is calling only updates at end of bar you will always get the same value returned until the next bar closes. You could be calling lots of indicators from your indicator, so you don't want to change the default behaviour of other indicators, but if you do, you should probably create another indicator.

    Comment


      #3
      Thanks. One could write psudo indicators that were really to be used as functions, think I will.

      Comment


        #4
        does the called indicator have to have a Plot0 in it in order to return a value?

        Comment


          #5
          No, you could just declare a DataSeries.

          The important bit is in the properties. If it was a Plot it would look like :-

          Code:
          public DataSeries myLine
          {
             get Values[0];
          }
          But if it was your own DataSeries it could look like :-

          Code:
          public DataSeries myLine
          {
             get myDataSeries;
          }

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by cmoran13, 04-16-2026, 01:02 PM
          0 responses
          43 views
          0 likes
          Last Post cmoran13  
          Started by PaulMohn, 04-10-2026, 11:11 AM
          0 responses
          25 views
          0 likes
          Last Post PaulMohn  
          Started by CarlTrading, 03-31-2026, 09:41 PM
          1 response
          162 views
          1 like
          Last Post NinjaTrader_ChelseaB  
          Started by CarlTrading, 04-01-2026, 02:41 AM
          0 responses
          98 views
          1 like
          Last Post CarlTrading  
          Started by CaptainJack, 03-31-2026, 11:44 PM
          0 responses
          157 views
          2 likes
          Last Post CaptainJack  
          Working...
          X