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 llanqui, Today, 03:53 AM
    0 responses
    2 views
    0 likes
    Last Post llanqui
    by llanqui
     
    Started by burtoninlondon, Today, 12:38 AM
    0 responses
    10 views
    0 likes
    Last Post burtoninlondon  
    Started by AaronKoRn, Yesterday, 09:49 PM
    0 responses
    14 views
    0 likes
    Last Post AaronKoRn  
    Started by carnitron, Yesterday, 08:42 PM
    0 responses
    11 views
    0 likes
    Last Post carnitron  
    Started by strategist007, Yesterday, 07:51 PM
    0 responses
    14 views
    0 likes
    Last Post strategist007  
    Working...
    X