Announcement

Collapse
No announcement yet.

question for Alex

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • question for Alex

    Question for Alex.

    What does the thermometer.efs do.

    I am curious.

    Also, thanks for all of your work on compiling the variable efs list that you put together.

    Ez2njoy

  • #2
    Duh.

    I did not notice the colored bar on the right side of the chart.

    Sorry for the dumb question.

    Pretty cool.

    Thanks.

    ez2njoy

    Comment


    • #3
      Where can I find this thermometer efs and what does it do?
      Bill

      Comment


      • #4
        Bill
        The thermometer.efs is available here
        The efs essentially replicates the Thermometer that is available in the Quote Board Window and shows the range of the day. As in that tool the blue arrow represents the Open, the line separating the red and green areas the Last Price, the red area the Last to High of the day and the green area the Last to Low of the day.
        Alex

        Comment


        • #5
          Thermometer

          Alex,

          I keep getting a syntax error line 37 on the thermometer.
          I have the gettodayOHLC1. efs in the same directory.

          But still no luck, any suggestions?

          John

          Comment


          • #6
            Hello John,

            The getTodayOHLC1.efs needs to be saved to \eSignal\Formulas\OHLC\. The thermometer.efs can be saved anywhere you like in \eSignal\Formulas\.
            Jason K.
            Project Manager
            eSignal - an Interactive Data company

            EFS KnowledgeBase
            JavaScript for EFS Video Series
            EFS Beginner Tutorial Series
            EFS Glossary
            Custom EFS Development Policy

            New User Orientation

            Comment


            • #7
              Hi Alex

              I did not find gettodayOHLC1. efs . Can u help?

              Thanx

              Sukh
              sukh

              Comment


              • #8
                Sukh
                You can find it here
                Alex

                Comment


                • #9
                  Thanks Alex

                  I got it

                  Sukh
                  sukh

                  Comment


                  • #10
                    Question for Alex
                    Need very simple sound alert.

                    When Price= 35
                    then sound alert
                    Larry Dudash
                    HAL at
                    http://share.esignal.com/groupconten...r=&groupid=549

                    Comment


                    • #11
                      Larry
                      I think this should do what you asked.
                      You can also change the Value (which is set to 35 as default) through Edit Studies
                      Alex

                      PHP Code:
                      function preMain() {
                          
                      setPriceStudy(true);
                          
                      setStudyTitle("35");
                          
                      setShowCursorLabel(false)
                          
                          var 
                      fp1 = new FunctionParameter("Value"FunctionParameter.NUMBER);
                          
                      fp1.setLowerLimit(0);        
                          
                      fp1.setDefault(35);
                          
                                
                      }
                      function 
                      main(Value) {

                      if (
                      close()==Value)
                      Alert.playSound("ding.wav");

                      return ;

                      Comment


                      • #12
                        Alex
                        Thank you for your fast reply.
                        I will give it a try.

                        Larry Dudash
                        Larry Dudash
                        HAL at
                        http://share.esignal.com/groupconten...r=&groupid=549

                        Comment


                        • #13
                          Dear Alex (or anyone else who knows the answer!)

                          I am trying to code the following: "if MACD Signal is below 0 (zero), then ..."

                          It can't be done using the Formula Wizard, because there seems to be no function for comparing an indicator's value with a specific numerical value such as 0.

                          Any idea how can this be done?

                          Thanks

                          Veda

                          Comment


                          • #14
                            Veda
                            It can be done in Formula Wizard. See attached efs created using only the Formula Wizard where if the Signal line is below 0 it is painted in red and if above 0 it is painted in lime.
                            Alex

                            Attached Files

                            Comment


                            • #15
                              Veda (and anyone else who downloaded the efs)
                              There is a labeling error in the formula. MACD and Sig labels should be reversed
                              Alex

                              This is how the list appears in the Study Configuration window in Formula Wizard



                              And this is how it should be



                              Last edited by ACM; 10-06-2003, 04:17 AM.

                              Comment

                              Working...
                              X