Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Access indicator plot colors

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

    Access indicator plot colors

    hi, say I have an indicator that plots a line and colors it blue and red.
    I want to access the plot colors from another indicator and do something like this:

    Code:
    MyIndicator ind = MyIndicator();
    byte red = ind.PlotColors[0][0].R;
    byte green = ind.PlotColors[0][0].G;
    byte blue = ind.PlotColors[0][0].B;
    I get 0's in red, green and blue though Plot 0 gets assigned different colors.
    Should this work?

    #2
    Just answering it here for others as I got it working.

    Need to call MyIndicator.Update() before accessing PlotColors

    So code should look like this:

    Code:
    MyIndicator ind = MyIndicator();
    
    ind.Update();
    
     byte red = ind.PlotColors[0][0].R; 
    byte green = ind.PlotColors[0][0].G; 
    byte blue = ind.PlotColors[0][0].B;

    Comment


      #3
      Thanks for sharing your update and solution here onnb1.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by sjsj2732, 03-23-2026, 04:31 AM
      0 responses
      73 views
      0 likes
      Last Post sjsj2732  
      Started by NullPointStrategies, 03-13-2026, 05:17 AM
      0 responses
      313 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      310 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      148 views
      1 like
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      111 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Working...
      X