How to create conditions for the green volume bar and red volume bar?
@trade4lyf A positive volume bar indicates the current close is higher than the close of the previous candle and a negative volume bar indicates the current close is lower than the close of the previous candle.
Hence, you can create a condition such as ‘Close(0) higher than Close(-1)’ for the positive volume bar or ‘Close(0) lower than Close(-1)’ for the negative volume bar. You can also add a volume condition like- ‘Volume(0) higher than 50000’ so that the system checks for the volume bar as well.
Check out the conditions below for the positive volume bar: