Announcement

Collapse
No announcement yet.

screen height

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

  • screen height

    Howdy,

    Is there any way, other than high/low calcs, to read what the range displayed on the chart is?

    Thanks
    Mark

  • #2
    Mark
    Not that I know of
    Alex

    Comment


    • #3
      flexie,

      maybe you can intrabar use of a function like:


      PHP Code:
      var myHigh 0;
      var 
      myLow 0;
      function 
      myRange()
      {

      if (
      myHigh==0myHigh close(0);
      if (
      myLow==0)  myLow close(0);

      if (
      close(0) > myHighmyHigh close(0);
      if (
      close(0) < myLow)  myLow close(0);

      return  
      myHigh myLow;

      Franz

      Comment

      Working...
      X