Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

why does draw paint only the main panel

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

    why does draw paint only the main panel

    I have a indicator that does drawtext functionality. in my chart, i configured the indicator to show in new panel instead of overlay. however the paint is still showing in the main price panel. how do i force the draw.text to paint in the panel that the indicator is running.

    Draw.Text(this, "crossbelow" +CurrentBar, "look for short" , 1, High[1]);


    #2
    Hello junkone,

    Thank you for the question.

    Drawing objects are seperate from Plots, currently any Plots would be in panel 1 but drawing objects would be in panel 0.

    To correct this, you would need to change the DrawOnPricePanel property so the Objects follow the indicator panel instead.

    protected override void Initialize()
    {
    DrawOnPricePanel = false;
    }



    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by trilliantrader, Today, 03:01 PM
    1 response
    4 views
    0 likes
    Last Post NinjaTrader_Clayton  
    Started by geddyisodin, Today, 05:20 AM
    6 responses
    34 views
    0 likes
    Last Post geddyisodin  
    Started by pechtri, 06-22-2023, 02:31 AM
    9 responses
    122 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by frankthearm, 04-18-2024, 09:08 AM
    16 responses
    67 views
    0 likes
    Last Post NinjaTrader_Clayton  
    Started by habeebft, Today, 01:18 PM
    1 response
    8 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Working...
    X