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 WHICKED, Today, 12:45 PM
    2 responses
    18 views
    0 likes
    Last Post WHICKED
    by WHICKED
     
    Started by GussJ, 03-04-2020, 03:11 PM
    15 responses
    3,276 views
    0 likes
    Last Post xiinteractive  
    Started by Tim-c, Today, 02:10 PM
    1 response
    8 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by Taddypole, Today, 02:47 PM
    0 responses
    3 views
    0 likes
    Last Post Taddypole  
    Started by chbruno, 04-24-2024, 04:10 PM
    4 responses
    51 views
    0 likes
    Last Post chbruno
    by chbruno
     
    Working...
    X