Announcement

Collapse
No announcement yet.

Cursor window

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

  • Cursor window

    How many lines can you put in to the cursor window below the standard items
    Looks like 15
    Is this correct
    sam

  • #2
    Re: Cursor window

    sam
    It depends on the size of the font used in the Cursor Window and the size of the chart. With a relatively smalll (but still readable) font on a maximized chart (monitor resolution of 1280x1024) I can view up to 75 items in addition to the standard ones while on a chart that takes up half the vertical space of the application desktop I can view approximately 30 items (see enclosed screenshots)
    Alex






    Originally posted by sam.burn
    How many lines can you put in to the cursor window below the standard items
    Looks like 15
    Is this correct

    Comment


    • #3
      sam
      If interested here is the script I used for the test.
      Alex

      PHP Code:
      function preMain(){
          
      setPriceStudy(true)
      }
      var 
      myArray = new Array();
      function 
      main(){
          if(
      getBarState()==BARSTATE_ALLBARS){
              var 
      numberItems 30;//modify this to set the number of items returned
              
      for (i=1;i<=numberItems;i++){
                  
      myArray.unshift(i)
              }
          }
          return 
      myArray;

      Comment


      • #4
        Thanks Alex
        sam

        Comment


        • #5
          sam
          You are most welcome
          Alex


          Originally posted by sam.burn
          Thanks Alex

          Comment

          Working...
          X