Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to store a color in a variable?

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

    How to store a color in a variable?

    How can I store a color in a variable?

    Variable1 = Color.Red
    Varisble2 = Color.Blue

    thank you.

    #2
    Originally posted by Ironman9973 View Post
    How can I store a color in a variable?

    Variable1 = Color.Red
    Varisble2 = Color.Blue

    thank you.
    Just as you do for all variables. You declare it, and then you use it.
    Code:
    Color Variable1 = Color.Red;

    Comment


      #3
      Thank you. But I cannot use it like:

      Color.Variable1

      I would like to code an indicator where you can input the color of an arrow.

      variable1 = Red
      variable2 = Blue

      DrawArrowDown("tag1" + CurrentBar,true,0,High[0], Color.variable1);

      I hope that makes sense.

      Thank you.

      Comment


        #4
        Originally posted by Ironman9973 View Post
        Thank you. But I cannot use it like:

        Color.Variable1

        I would like to code an indicator where you can input the color of an arrow.

        variable1 = Red
        variable2 = Blue

        DrawArrowDown("tag1" + CurrentBar,true,0,High[0], Color.variable1);

        I hope that makes sense.

        Thank you.
        You need to read up on variables and how they are declared and used. If you have declared Variable1 as a color, why are you referring to it using object notation, as if the declared variable is a member of the Color class: it is an instance of it, not a member.

        Correct is:
        Code:
        Color Variable1 = Color.Red;
        //...
        DrawArrowDown("tag1" + CurrentBar,true,0,High[0], Variable1);

        Comment


          #5
          Thank you.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          566 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          330 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          101 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          547 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          548 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X