Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Passing Value to Market Analyzer

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

    Passing Value to Market Analyzer

    I want my indicator, that does not plot a value, to return an IntSeries value to a Market Analyzer window. I have a private IntSeries indicatorValue defined in Variables -

    private IntSeries indicatorValue;

    and initialized in Initailize -

    indicatorValue = new IntSeries(this);

    And I have a public IntSeries -

    [Browsable(false)]
    [XmlIgnore()]
    public IntSeries IndicatorValue
    {
    get { return indicatorValue; }
    }

    For test purposes I am setting indicator.Value = 4 in OnBarUpdate -

    indicatorValue.Set(4);

    How do I specify that I want that value in my Market Analyzer window? I have added the indicator as a column. What do I have to do to see my test value, 4, in the Analyzer?

    #2
    Hello,

    If you wanted to output it as an indicator it would require assigning it a plot so that you could select it in the market analyzer drop down to select what plot to output.

    Otherwise if you do not want to do this requires unsupported programming to create an indicator that is a market analyzer only indicator.

    There is no documentation on how to do this. The only thing you can do is look at the example for the NinjaTrader market analyzer indicators which the code can be seen through windows explorer by navigating manually to the My Documents->NinjaTrader 7->bin->custom->Market Analyzer column. It is here you could adapt on of these to do what you need.

    Let me know if I can be of further assistance.
    BrettNinjaTrader Product Management

    Comment


      #3


      There is a link in that thread which will take to the latest version of my code.

      It should give you some ideas.

      Comment


        #4
        Thanks for the direction.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        579 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        334 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        554 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        551 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X