@khalids222 to trace the values you are calculating so you can see it on the screen live.

@khalids222 to trace the values you are calculating so you can see it on the screen live.

https://fxdreema.com/shared/18vPCCK7b
TIP: If thing doesn't do what you want it to do then "Trace" block is a nice tool to check values.
I don't understand, on the screenshot buy is open?
And I think I would add 10 pips in the result value in the Formula block instead of in the condition block

I got it work with some custom code, I think it's strange if it's not implemented in fxdreema already, anyway..I could not find it.
Visual view:

I'm not a programmer so the code might look messy 
Example:
https://fxdreema.com/shared/UVnbHjvgc



Hello, I'm maybe not good at searching in this forum...but anyway, I could not find any answer.
I'm trying to get the price value of fibonacci expansion levels.
"Fibonacci: Price by level" does not give me the correct price level, looks like it only works correctly with Fibonacci retracement levels

Any solution?
Thanks
@miro1360 That's what I was looking for! Thank you very much!
I was reading that thread but it didn't answer my question as I can see.
What I want to do is to draw a trendline from High ID 2 to HighID 1 or from Low ID 2 to Low ID 1
Getting the price for the points of trendline is not a problem, but getting the time for points for the trendline I don't understand how to do?
Is it possible to get candleID of the ZigZag High Low ID? If so..how?
@miro1360 ah, I see
I got it work, thank you
I'm going to study your loop examples too.
https://fxdreema.com/shared/ewgZNewxe
in the builder? https://fxdreema.com/builder
What browser are you using? I'm using google Chrome, everything works.
In the Projects menu

Strange, I though it was a loop?
Because if I write this in a custom MQL code block:
for(int i=0; i<=100; i++){
ObjectCreate( "Time_vLine-"+Time[i], OBJ_VLINE, 0, Time[i], 0 );
ObjectSet( "Time_vLine-"+Time[i], OBJPROP_COLOR,clrRed);
}
I get 100 vertical lines on the init....
Why is not the "Loop pass "n" times" not doing the same?
I'm not sure if this is an ok solution?