Announcement

Collapse
No announcement yet.

Difference of Bar high and low efs?

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

  • Difference of Bar high and low efs?

    are there any EFS that will automatically take intraday bar high and subtract bar low and print the diffrence in cursor window ?

    thanks in advance

  • #2
    What is the time range of the hi/lo?

    930 to 1600 est?

    Comment


    • #3
      no, I mean intraday bars. say 15mins 30mins hourly bars.

      basically any bar that I point the cursor to.

      right now cursor window will show open high low close(and the extra efs price info I have running)

      Would like to know if it is possible to have the difference of any bar that I point to intraday show on the cursor window as extra row.

      Basically to speed up the intraday trading as I adjust shares size to a fixed $ risked.

      Thanks in advance

      Comment


      • #4
        no, I mean intraday bars. say 15mins 30mins hourly bars.

        basically any bar that I point the cursor to.

        right now cursor window will show open high low close(and the extra efs price info I have running)

        Would like to know if it is possible to have the difference of any bar that I point to intraday show on the cursor window as extra row.

        Basically to speed up the intraday trading as I adjust shares size to a fixed $ risked.

        Thanks in advance

        Comment


        • #5
          does this help?

          function preMain() {
          setPriceStudy(true);
          setStudyTitle("h-l");
          setCursorLabelName("h-l", 0);
          setDefaultBarStyle(PS_SOLID, 0);
          setDefaultBarFgColor(Color.red, 0);
          setDefaultBarThickness(1, 0);
          setPlotType(PLOTTYPE_LINE, 0);
          }

          function main() {
          return high()-low()+"";
          }

          Comment


          • #6
            Hellodloomis ,

            Thanks for the quick reply! Yes it helps!! The basic script is exactly what I am looking for.

            I have made some slight changes to the script you provided. I have it exactly the way I wanted now! Thanks a lot for the script !

            Comment


            • #7
              glad to help when i can, yw

              Comment

              Working...
              X