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

How to add indicator in different panel?

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

    How to add indicator in different panel?

    When I put the following in my code:
    PIKQQE1 = PIKQQE(......);
    myEMA = EMA(...);

    AddChartIndicator(PIKQQE1);
    AddChartIndicator(myEMA);

    Both of them show up in my chart and my chart gets all funky. How can I make the 1st indicator show up on my lower(2nd) panel?



    #2
    Hi priceisking, thanks for your post.

    You must set the first indicator's "IsOverlay" property to false to display in a separate panel. e.g.

    State == State.SetDefaults:
    IsOverlay = false;

    Please let me know if this does not resolve your inquiry.
    Chris L.NinjaTrader Customer Service

    Comment


      #3
      So when i do this, both my EMA and QQE indicators show up on different panels. I just want the QQE to show up on different panel not my EMA. Also, i'm trying to add both of them in my strategy. If i set the strategy to IsOverlay=false, both indicators show up on their own panel.

      Comment


        #4
        nevermind. i just used the properties for each indicator to set it.

        myEMA.IsOverlay=true;

        That did it.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by bortz, 11-06-2023, 08:04 AM
        47 responses
        1,603 views
        0 likes
        Last Post aligator  
        Started by jaybedreamin, Today, 05:56 PM
        0 responses
        8 views
        0 likes
        Last Post jaybedreamin  
        Started by DJ888, 04-16-2024, 06:09 PM
        6 responses
        18 views
        0 likes
        Last Post DJ888
        by DJ888
         
        Started by Jon17, Today, 04:33 PM
        0 responses
        4 views
        0 likes
        Last Post Jon17
        by Jon17
         
        Started by Javierw.ok, Today, 04:12 PM
        0 responses
        12 views
        0 likes
        Last Post Javierw.ok  
        Working...
        X