OK, thanks, came up with following example then. At a guess Open, Close can be added to colour entire candle.
Inputs: Criteria(Time > 0830 and Time < 0900);
If Criteria Then Begin
PlotPaintBar(High, Low, "Paint AnyBar");
End
Else Begin
NoPlot(1);
NoPlot(2);
End;