Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Assign new value to Lines

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

    Assign new value to Lines

    I have added lines as follows to my indicator:

    Add(new Line(Color.Purple, 0,"Test"));

    I would like to programmically move the lines.

    I calculate and assign a new value as follows:

    Lines[0] = (double)(lowOfWeek + swing*0.1);

    when I compile I get the following error

    "Cannot implicitly convert type 'double' to 'NinjAtrader.Gui.CharLine'"

    I don't understand this error since Lines[0].Value is a double

    #2
    Originally posted by afshinmoshrefi View Post
    I have added lines as follows to my indicator:

    Add(new Line(Color.Purple, 0,"Test"));

    I would like to programmically move the lines.

    I calculate and assign a new value as follows:

    Lines[0] = (double)(lowOfWeek + swing*0.1);

    when I compile I get the following error

    "Cannot implicitly convert type 'double' to 'NinjAtrader.Gui.CharLine'"

    I don't understand this error since Lines[0].Value is a double
    According to what you have posted, you are assigning to Lines[0]. Not quite the same as assigning to Lines[0].Value.

    Comment


      #3
      Hello afshinmoshrefi,
      Thanks for writing in today.

      The error you are receiving is because you are assigning the Lines[0] to a double when Lines[0] is a Line object.

      If you would like to set the value you would need to use Lines[0].Value as koganam mentioned.

      Please let us know if we may be of further assistance for anything NinjaTrader.
      Alex G.NinjaTrader Customer Service

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CaptainJack, 05-29-2026, 05:09 AM
      0 responses
      51 views
      0 likes
      Last Post CaptainJack  
      Started by CaptainJack, 05-29-2026, 12:02 AM
      0 responses
      31 views
      0 likes
      Last Post CaptainJack  
      Started by charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      99 views
      0 likes
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      177 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      170 views
      0 likes
      Last Post CarlTrading  
      Working...
      X