How to know if the last printed candle is the biggest in range
-
Please do you have any idea how to find if the last printed candle (candle 1) is bigger than all the last 50 candles (candles 2 to 50) in total size, High to Low
There is a block to get the highest price of candle in a range but there is no block to check the highest size in a range.
I want to make trades only if last candle is bigger in size than the last 50 candle.

-
@Temmy-25 You need 2 blocks to get it like this:

-
@l-andorrà Thank you for this idea
But this will not execute exactly what I want.This is pass if candle 1 is breaking a 50 candle range on both sides (high and low)
What I want is a candle that is bigger than the last 50 candle in size, might break or might not break the 50 candle range
I found a long way to do it
Once per bar, I created a variable system that stores the sizes of each the last 50 candles and then compares each of the candle size to candle 1.This means I have 50 variables and 50 condition blocks.
Works perfectly.

-
Congrats!
