How to get size of a candle in streak?

I want to differentiate between big and small candles.
@Streak

How do you want to quantify this? big and small is relative

Here is an example
abs(Open(0)-Close(0)) higher than Period max(10, abs(Open(-1)-Close(-1)) )

it will compute for current candle red or green whose body would by greater than previous 10 candles body.

You have to read the help section and try to figure out what you want and then create the condition accordingly.

1 Like