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.
//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