Announcement

Collapse
No announcement yet.

Close Indicator

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

  • #16
    sante
    You can find the complete list of "plain language" colors here. You can also use the RGB values to define colors
    Alex

    Comment


    • #17
      and if i want to see for example "32000 - stop long"on chart is possible???
      Attached Files

      Comment


      • #18
        sante
        If you want to show for example the value of the low of two bars ago then you could add the code enclosed below to your script. For the lines you would use drawLineRelative() (for information and the required syntax on this function see this article in the EFS KnowledgeBase
        Alex

        PHP Code:
        drawTextRelative(2,low(-2),"t",Color.blue,null,Text.VCENTER,"Wingdings 3",8,1);
        drawTextRelative(4,low(-2), low(-2)+" - stop long"Color.blue,null,Text.VCENTER,"Arial",10,2); 

        Comment


        • #19
          many many tnx

          Comment


          • #20
            sante
            My pleasure
            Alex

            Comment

            Working...
            X