Announcement

Collapse
No announcement yet.

TodaysDayDaily Bars

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

  • TodaysDayDaily Bars

    Can someone suggest a way to eliminate the code in the attached script pertaining to the "Close"? I would only like to display lines for the current day's Open, High and Lows.

    Thanks. Dave
    Attached Files

  • #2
    Change all occurances of

    return new Array(vLastO, vLastH, vLastL, vLastC);

    to

    return new Array(vLastO, vLastH, vLastL);

    I think I saw two lines you need to change

    Comment


    • #3
      Thanks,Dave, appreciate the help.

      Comment

      Working...
      X