Announcement

Collapse
No announcement yet.

Remove Study Lables

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

  • Remove Study Lables

    Is there a way to remove the study lables that appear in the upper left hand corner of each chart? In my view the only purpose they serve is to create unnecessary screen clutter. Traders will "know" what studies and parameters they are using by just looking at their charts. If they need to see the details then they can access "edit studies". Please clean up the screen clutter.
    thnx....Dave

  • #2
    Re: Reply to post 'Remove Study Lables'

    Go into Edit Studies then check the Override box for the Title and leave the
    space for the override name empty.
    If you want you can just put a number to identify them later
    Hope this helps
    Alex

    Comment


    • #3
      While Alex's solution does work for studies in the formulas folder it is not available for the basic studies. I too would like to eliminate this screen clutter and have asked for this option in the past. It can be a real problem for those running smallish charts.

      Brian

      Comment


      • #4
        I clean up screen clutter by changing the words to a simple period - .

        a . doesnt take up much space

        Comment


        • #5
          oh, now I see, you mean words like Volume.

          Guess you would have to write an efs and tell it to not write the clutter.

          Comment


          • #6
            Commodity Channel Index (20,C)
            is a real problem.

            Comment


            • #7
              not for the FM

              //{{EFSWizard_Description
              //
              // This formula was generated by the Alert Wizard
              //
              //}}EFSWizard_Description 7532


              //{{EFSWizard_Declarations

              var vCCI20 = new CCIStudy(20, "Close");
              var vLastAlert = -1;

              //}}EFSWizard_Declarations 7938


              function preMain() {
              /**
              * This function is called only once, before any of the bars are loaded.
              * Place any study or EFS configuration commands here.
              */
              //{{EFSWizard_PreMain

              // setStudyTitle("cci");
              setCursorLabelName("cca", 0);
              setDefaultBarStyle(PS_SOLID, 0);
              setDefaultBarFgColor(Color.red, 0);
              setDefaultBarThickness(1, 0);
              setPlotType(PLOTTYPE_LINE, 0);
              //}}EFSWizard_PreMain 29356

              }

              function main() {
              /**
              * The main() function is called once per bar on all previous bars, once per
              * each incoming completed bar, and if you don't have 'setComputeOnClose(true)'
              * in your preMain(), it is also called on every tick.
              */

              //{{EFSWizard_Expressions
              //{{EFSWizard_Expression_1
              if (
              close() > 0
              ) onAction1();
              //}}EFSWizard_Expression_1 5423

              //}}EFSWizard_Expressions 16126


              //{{EFSWizard_Return
              return vCCI20.getValue(CCIStudy.CCI);
              //}}EFSWizard_Return 5728

              }

              function postMain() {
              /**
              * The postMain() function is called only once, when the EFS is no longer used for
              * the current symbol (ie, symbol change, chart closing, or application shutdown).
              */
              }

              //{{EFSWizard_Actions
              //{{EFSWizard_Action_1
              function onAction1() {
              vLastAlert = 1;
              }
              //}}EFSWizard_Action_1 5589

              //}}EFSWizard_Actions 15622

              Comment


              • #8
                slight edit

                //{{EFSWizard_PreMain

                setStudyTitle(".");

                Comment


                • #9
                  Thanks for the repy but I'm not sure how to use with this code.
                  Where/ how do I run it?
                  Do I just copy and apply as an efs to the study/chart in question and change the CCIStudy to say Directional Movement if that is the clutter I want to cleanup?
                  Here's an example of the problem.
                  Attached Files

                  Comment


                  • #10
                    save this file in your crogramfiles\esignal\formulas\dowhloads then right click on the chart Formulas=> downloads=> cci.efs
                    Attached Files

                    Comment


                    • #11
                      Thanks very much!
                      That sure fixed things.I had a mess displayed before when i saved and opened it,(named it too long).
                      Q. Can line 10 be changed to some of the other basic studies?
                      and should line 24 be cci or if it ain't broke......don't fix it.

                      Brian
                      Last edited by brianb; 02-07-2003, 10:10 PM.

                      Comment


                      • #12
                        you are right, line 10 is what controls the length etc of the cci formula change it to 14 from 20, if you want.

                        any stuff between quote marks can be changed to your hearts content

                        plus breaking these things and fixing them again is part of the fun, you know

                        Comment


                        • #13
                          The Formula Wizard adds a lot of stuff, here is what it looks like cleaned up and streamlined
                          Attached Files

                          Comment

                          Working...
                          X