Hello friends, I would like to find some maximums and minimums, can you help me do this in fxdreema?
-
Current maximum historical
Current historical low
Maximum Annual
Annual Minimum
Monthly Maximum
Minimum Monthly
Weekly Maximum
Weekly Minimum
Previous day high
Previous day's low -
@fabiobioware this can be approached in different ways. it all depends on where do you want this to be set up. in the following link, you'll see an example in the condition block on the left side where i set up yesterdays high.
-
Hello @q8carpenter https://fxdreema.com/shared/vkOJmkBUc is correct?
-
I think it's correct. I'm not so sure about those 4 blocks on the 'on Init' tab. DO they work as intended?
-
@l-andorrà said in Hello friends, I would like to find some maximums and minimums, can you help me do this in fxdreema?:
I think it's correct. I'm not so sure about those 4 blocks on the 'on Init' tab. DO they work as intended?
no, what matters is the blocks on the tick, i'm trying to find the maximum and minimum that i need.
-
my concern is whether i will be able to locate all these tops and bottoms on any chart that i put the EA, considering the circuit breaks that existed.
And if in fact each of these variables are correct, I will put it in English so that you understand it better. -
https://fxdreema.com/shared/q54ELlggd here in english
-
You can actually simplify the project by using the mql5 code for the extremes. For example, the code for monthly high is:
iHigh(NULL, PERIOD_MN1, 0)
Weekly high:
iHigh(NULL, PERIOD_W1, 0)Daily low:
iLow(NULL, PERIOD_D1, 0)etc. You see the pattern.

-
@roar said in Hello friends, I would like to find some maximums and minimums, can you help me do this in fxdreema?:
You can actually simplify the project by using the mql5 code for the extremes. For example, the code for monthly high is:
iHigh(NULL, PERIOD_MN1, 0)
Weekly high:
iHigh(NULL, PERIOD_W1, 0)
Daily low:
iLow(NULL, PERIOD_D1, 0)
etc. You see the pattern.@roar sorry i'm not really a programmer for this everything i do depends on fxdreema, could you help me get these values i need so much?
-
Block 27 has a problem. You should specify the timeframe to 'Monthly' instead of 'currently', as it is now.