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 TheWhiteDragon, 01-21-2019, 12:44 PM
        4 responses
        541 views
        0 likes
        Last Post PaulMohn  
        Started by GLFX005, Today, 03:23 AM
        0 responses
        2 views
        0 likes
        Last Post GLFX005
        by GLFX005
         
        Started by XXtrader, Yesterday, 11:30 PM
        2 responses
        11 views
        0 likes
        Last Post XXtrader  
        Started by Waxavi, Today, 02:10 AM
        0 responses
        7 views
        0 likes
        Last Post Waxavi
        by Waxavi
         
        Started by TradeForge, Today, 02:09 AM
        0 responses
        14 views
        0 likes
        Last Post TradeForge  
        Working...
        X