Announcement

Collapse
No announcement yet.

Modify marking qty of bars

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

  • Modify marking qty of bars

    Thanks. It works fine.

    Could I ask how I may put the dots at the bottom of the screen instead of the top. And how I can make the dots black instead of colored.

    Rogersonfarm

  • #2
    Rogersonfarm

    You may want to keep messages in the same thread if they are related as in this case
    Change these lines

    drawShapeRelative(-100,5, Shape.CIRCLE, null, Color.blue, Shape.RELATIVETOTOP,1);
    drawShapeRelative(-140,5, Shape.CIRCLE, null, Color.red, Shape.RELATIVETOTOP,2);

    to these

    drawShapeRelative(-100,0, Shape.CIRCLE, null, Color.black, Shape.RELATIVETOBOTTOM,1);
    drawShapeRelative(-140,0, Shape.CIRCLE, null, Color.black, Shape.RELATIVETOBOTTOM,2);

    Alex

    Comment


    • #3
      Keep in same thread

      Thanks for the advice. I'll try.

      Rogersonfarm

      Comment

      Working...
      X