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

Can't get DrawRegion to plot

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

    Can't get DrawRegion to plot

    For some reason unknown to me the DrawRegion is not plotting on my indicator. No errors are given. The indicator plots.
    I'm trying to fill in the areas when the ind. value crosses above and the upper limit line(90), and crosses below the lower limit line(10). Attached is the code. Print functions are included the help me debug the logic and values.
    Last edited by zacharydw00; 07-22-2010, 08:17 AM.

    #2
    Hi zacharydw00,

    Try adding...

    DrawOnPricePanel = false;

    to the Initialize() section.
    TimNinjaTrader Customer Service

    Comment


      #3
      Thanks.
      Next question. Is there a way to prevent the areas from shading as shown in the attachment?
      Attached Files

      Comment


        #4
        Hi zacharydw00,

        DrawRegion() will be tied to bar objects (minimum is one bar) and this is why you're seeing the colors overlap during a cross over.

        You would need to override the Plot method to change this behavior. Unfortunately this technique is beyond the level of support we offer.
        TimNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by ScottWalsh, 04-16-2024, 04:29 PM
        7 responses
        34 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by cls71, Today, 04:45 AM
        0 responses
        3 views
        0 likes
        Last Post cls71
        by cls71
         
        Started by mjairg, 07-20-2023, 11:57 PM
        3 responses
        214 views
        1 like
        Last Post PaulMohn  
        Started by TheWhiteDragon, 01-21-2019, 12:44 PM
        4 responses
        546 views
        0 likes
        Last Post PaulMohn  
        Started by GLFX005, Today, 03:23 AM
        0 responses
        3 views
        0 likes
        Last Post GLFX005
        by GLFX005
         
        Working...
        X