Announcement

Collapse
No announcement yet.

SetPriceBarColor

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

  • SetPriceBarColor

    is there a way to set the color for the 'prior' bar?

    //locate the pivot point
    if( low() > low(-1) && low(-1) < low(-2){
    set PriceBarColor(Color.red);
    }

    this sets the current bar(entry bar) red.
    i'd like to color the 'pivot bar' red ie...the bar at low(-1).
    is there a way to do this?

    thanks for any help.
    peter.

  • #2
    Re: SetPriceBarColor

    peter

    is there a way to set the color for the 'prior' bar?
    Not at this time

    i'd like to color the 'pivot bar' red ie...the bar at low(-1).
    is there a way to do this?
    You could mark the bar with text or a shape, etc or color its background
    Alex


    Originally posted by peterjerome
    is there a way to set the color for the 'prior' bar?

    //locate the pivot point
    if( low() > low(-1) && low(-1) < low(-2){
    set PriceBarColor(Color.red);
    }

    this sets the current bar(entry bar) red.
    i'd like to color the 'pivot bar' red ie...the bar at low(-1).
    is there a way to do this?

    thanks for any help.
    peter.

    Comment


    • #3
      OK...thanks for the quick response alex.
      peter.

      Comment


      • #4
        peter
        You are welcome
        Alex


        Originally posted by peterjerome
        OK...thanks for the quick response alex.
        peter.

        Comment

        Working...
        X