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 GLFX005, Today, 03:23 AM
    0 responses
    1 view
    0 likes
    Last Post GLFX005
    by GLFX005
     
    Started by XXtrader, Yesterday, 11:30 PM
    2 responses
    11 views
    0 likes
    Last Post XXtrader  
    Started by Waxavi, Today, 02:10 AM
    0 responses
    6 views
    0 likes
    Last Post Waxavi
    by Waxavi
     
    Started by TradeForge, Today, 02:09 AM
    0 responses
    14 views
    0 likes
    Last Post TradeForge  
    Started by Waxavi, Today, 02:00 AM
    0 responses
    3 views
    0 likes
    Last Post Waxavi
    by Waxavi
     
    Working...
    X