Yo Adrian
New member
Hey everyone, first post but I've been reading the board for a long time. Finally getting around to participating
How can I paint the active candle gray and revert to the original color as soon as it closes?
So far this is my line of thinking:
Can anyone here fill in the blanks?
How can I paint the active candle gray and revert to the original color as soon as it closes?
So far this is my line of thinking:
Code:
def Active = (_no Close price yet_);
AssignPriceColor
(if Active then Color.GRAY
else Color.CURRENT);
Can anyone here fill in the blanks?