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

indicator communication

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

    indicator communication

    if I have indicator1 on the price chart and indicator2 in a separate panel.

    Other than using files, what's the best way for indicator1 to access simple data in indicator2?

    #2
    Originally posted by futurenets View Post
    if I have indicator1 on the price chart and indicator2 in a separate panel.

    Other than using files, what's the best way for indicator1 to access simple data in indicator2?
    Indicator1 can make an indicator2 and access that.

    Use the constructor.

    Comment


      #3
      Originally posted by futurenets View Post
      if I have indicator1 on the price chart and indicator2 in a separate panel.

      Other than using files, what's the best way for indicator1 to access simple data in indicator2?
      Any and all data that you want to read external to the class/indicator, you should expose as public.

      Comment


        #4
        ok so would need to run 2 indicator2's?

        Comment


          #5
          Originally posted by futurenets View Post
          ok so would need to run 2 indicator2's?
          Your original question implies that you are running the 2 indicators.
          if I have indicator1 on the price chart and indicator2 in a separate panel.

          Comment


            #6
            Hello futurenets,
            Thanks for posting today.

            The methods and ideas sledge and koganam have provided will allow you to do what you are trying to accomplish.

            Any indicator can access data from another indicator by simply calling it in the indicator method call as the input series.

            Here is a sample code from the help guide.
            Code:
            // Printing the current value of the 20 period simple moving average of a 14 period RSI
            // using a data series of closing prices
            double value = SMA(RSI(Close, 14), 20)[0];
            Print("The current SMA value is " + value.ToString());
            Here is a link to help guide documentation on valid input data for indicator methods. http://www.ninjatrader.com/support/h..._indicator.htm

            Please let us know if we may be of further assistance for anything NinjaTrader.
            Alex G.NinjaTrader Customer Service

            Comment


              #7
              Originally posted by sledge View Post
              Indicator1 can make an indicator2 and access that.

              Use the constructor.
              Even then the data from indicator2 must be exposed as public if it is to be accessible.

              Comment


                #8
                ok thanks. to summarize ...

                a chart with IndicatorA and IndicatorB where IndicatorA needs access to IndicatorB data then easiest solution is for IndicatorA to construct another instance of IndicatorB.

                Comment


                  #9
                  Hello,
                  Thanks for the reply.

                  Correct.

                  Please let us know if we may be of further assistance for anything NinjaTrader.
                  Alex G.NinjaTrader Customer Service

                  Comment

                  Latest Posts

                  Collapse

                  Topics Statistics Last Post
                  Started by DJ888, 04-16-2024, 06:09 PM
                  4 responses
                  12 views
                  0 likes
                  Last Post DJ888
                  by DJ888
                   
                  Started by terofs, Today, 04:18 PM
                  0 responses
                  11 views
                  0 likes
                  Last Post terofs
                  by terofs
                   
                  Started by nandhumca, Today, 03:41 PM
                  0 responses
                  7 views
                  0 likes
                  Last Post nandhumca  
                  Started by The_Sec, Today, 03:37 PM
                  0 responses
                  3 views
                  0 likes
                  Last Post The_Sec
                  by The_Sec
                   
                  Started by GwFutures1988, Today, 02:48 PM
                  1 response
                  9 views
                  0 likes
                  Last Post NinjaTrader_Clayton  
                  Working...
                  X