
Also what is shift in time in the draw Fib block.

Also what is shift in time in the draw Fib block.
@jstap Thank you! In row mode it gives three options : normal, candle size increase and candle size decrease. That is what I'm wondering about.
What happens if I leave candle ID vacant? I already set candles in a row to 4.
What is row mode in bulls in a row block? And what is candle ID's purpose in bulls in a row block?
@Fingon Wait - there will be only one line at any given time? Do the lines drawn on factual highs/lows that are no longer the "last" one get deleted?
@jstap By arrow do you mean the arrows the Fractals indicator draws on the chart?
@Fingon Done. So, essentially there will now be a line on each fractal high/low formed after the program starts running, and those can then be used to figure out the price at the high/low of the fractal high/fractal low?
@jstap Thank you! If I have a custom block that assigns a value to each fractal high on the chart (the newest one being 0 and the previous ones having values of 1,2,3 and so on), can I call on a particular fractal high based on it's value? For example, how could I request for something about (say, high price for example) fractal high 0 to be compared to something about fractal high 1? Thanks in advance for your reply.
Sad though, was trying to help myself with ChatGPT XD
@xiawu said in Help with Fractals:
You can use objects (such as Arrow Down) to draw your fractal highs based on your specified conditions (such as the attached image).
Then, to compare between FH2 and FH1:
- Use the loop operation block - "Loop for Chart Objects" > "For each Object".
- Include 2 conditions under this block,
- The same condition as the image and
- Candle(3) high < (is below) Price level 1 of the object taken from the loop
You may need another separate object (Arrow Up) for your fractal lows and just switch the above conditions to the opposite.
Thanks, Ill check that out.
What does it mean if you are trying to import a file and it says "No record found."
Thank you! I think I'm too much of a newbie at coding to understand what you are saying, but hopefully when I open the builder and mess around a bit, I'll get it 
@jstap Thanks for your reply! I'm not sure I understand though - where would that code go on the website, and what do you mean by the arrows?
Hello, I would deeply appreciate some assistance here. This is my first time on this website, and so far it looks much better than all the other EA builders I've seen.
I am trying to create a piece of code that performs an action (drawing a trendline, but that's not relevant for this post) when three fractal high and then fractal low pairs form, each pair having a lower high and a lower low than the last. So something like this :

I created 6 variables, one for each FH/L , but I don't know how to assign the variables chart based values that make it possible to later compare them so as to ensure that FH2 is lower than FH1 on the chart, and FH3 is lower than FH2 (and the same for the fractal lows).
Thank you.