Announcement

Collapse
No announcement yet.

lineslabels efs

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

  • lineslabels efs

    Is there a way to change the lines in the line labels efs to several different colors?

  • #2
    Re: lineslabels efs

    gkhach
    The attached efs is a revision of the lineslabels.efs which now includes the option to assign a different color to each line (and label). The color is shared between charts in the same way as the lines and labels.
    Compare it to the original script to view the changes made
    Alex




    Originally posted by gkhach
    Is there a way to change the lines in the line labels efs to several different colors?
    Attached Files

    Comment


    • #3
      Line Labels Revision

      Thanks Alexis, just what was needed..

      Comment


      • #4
        Re: Line Labels Revision

        gkhach
        You are welcome
        Alex


        Originally posted by gkhach
        Thanks Alexis, just what was needed..

        Comment


        • #5
          LinesLabels.efs Doesn't Work In 11.3

          For some reason, the study will not render lines in 11.3. The studies titles show that LinesLabelsV3.efs is calculating, but it does not display the lines.

          Do you now why this is in Esignal 11.3. Thanks.

          Comment


          • #6
            Re: LinesLabels.efs Doesn't Work In 11.3

            mcarv63
            The formula appears to be working at my end [including the sharing functionality]
            Alex




            Originally posted by mcarv63
            For some reason, the study will not render lines in 11.3. The studies titles show that LinesLabelsV3.efs is calculating, but it does not display the lines.

            Do you now why this is in Esignal 11.3. Thanks.

            Comment


            • #7
              Follow up on my prior post.
              In testing the script I did notice an issue with the labels disappearing on a refresh of a chart or when requesting more data [for example by scrolling back a chart in Dynamic mode]. This issue however is occurring not only in 11.3 or with my revision of the script but also in 10.6 and with the original formula and is caused by the global variables not being reset in those instances
              To resolve this issue insert the enclosed block of code at the top of the main function
              Alex

              PHP Code:
              if(getBarState()==BARSTATE_ALLBARS){
                      
              vLoaded false;
                      
              vEdit null;
                      
              vSym null;
                      
              bGlobals false;
                      
              vThi null;
                      
              vDis null;
                      
              vPos null;
                  } 

              Comment

              Working...
              X