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

line not disappearing

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

    line not disappearing

    I have a function that when clicking the mouse it gives the location.

    I also have a button to turn the mouse color on and the mouse color to transparent.

    Sometimes it works and other times it does not work. Is there residual memory that keeps the lines continously drawing?

    here is some of the code.

    private void OnMouseDownEvent(object sender, MouseEventArgs e)
    {
    int xIndex = GetBarIndexFromX(e.X);

    if (bShowMarkerLine == true)
    {
    DrawVerticalLine("VLine", CurrentBar - xIndex, VLineColor);
    }

    }

    private void btnBlank_Click(object sender, EventArgs e)
    {
    if (btnBlank.Text == "Disable Vertical Line")
    {
    btnBlank.Text = "Disabled";
    VLineColor = Color.Transparent;
    RemoveDrawObject("VLine");
    }
    else
    {
    btnBlank.Text = "Disable Vertical Line";
    VLineColor = Color.Blue;
    }
    bUpdate = true;
    Update();

    }

    here is the button click event that suppose to change the color to transparent.

    private void btnBlank_Click(object sender, EventArgs e)
    {
    if (btnBlank.Text == "Disable Vertical Line")
    {
    btnBlank.Text = "Disabled";
    VLineColor = Color.Transparent;
    RemoveDrawObject("VLine");
    bShowMarkerLine = false;
    }
    else
    {
    btnBlank.Text = "Disable Vertical Line";
    VLineColor = Color.Blue;
    bShowMarkerLine = true;
    }
    bUpdate = true;
    Update();

    }

    If i restart it works but if i change times it has residue memory

    #2
    Hello ballboy11,

    Thank you for your post.

    Do you have a full script we may test that you can post here or send to platformsupport[at]ninjatrader[dot]com?

    You can attach your indicator to your response by going to File > Utilities > Export NinjaScript > Export selected source files > select your Indicator > select the right arrow > Export. The file will be located under (My) Documents\NinjaTrader 7\bin\Custom\ExportNinjaScript.

    If you send a note to platformsupport[at]ninjatrader[dot]com please list 'ATTN: Patrick H' in the subject line and reference this thread in the body of the email.

    I look forward to your response.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by ct, 05-07-2023, 12:31 PM
    6 responses
    202 views
    0 likes
    Last Post wisconsinpat  
    Started by kaywai, Today, 06:26 AM
    0 responses
    2 views
    0 likes
    Last Post kaywai
    by kaywai
     
    Started by kevinenergy, 02-17-2023, 12:42 PM
    118 responses
    2,778 views
    1 like
    Last Post kevinenergy  
    Started by briansaul, Today, 05:31 AM
    0 responses
    9 views
    0 likes
    Last Post briansaul  
    Started by traderqz, Yesterday, 12:06 AM
    11 responses
    28 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Working...
    X