@ambrogio Ahaa. My bad. I thought the "Pass" means when the condition is passed and I connected them that way.
Thanks a lot.
@ambrogio Ahaa. My bad. I thought the "Pass" means when the condition is passed and I connected them that way.
Thanks a lot.
@ambrogio ok. But I don't get it how to connect.
How should I connect it? I want to first break even (to avoid loss), then use a stop-loss trail to maximize the profit.
Thanks
@ambrogio thanks. But the breakeven is not working.
I shared the link again.
https://fxdreema.com/builder/vqbFjrhAd
These images are what happens on the trade opening and continues. You see no breakeven.


Hi
This topic might be repetitive. But I didn't find a completely correct answer about this.
Here is the point:
I want to set the breakeven when the price moves in my favor, say 10 pips, and then the trailing stop starts, say after 10 pips with a 5-pip step.
This is where I am now.
https://fxdreema.com/shared/ee8yThYFd
Thanks.
I need to identify high and low of 1st candle of NY session in one TF (say 30M) as an area. Then switch to 5M and on close, either higher or lower of the area, enter long or short.
How can I do this in FXdreema?
Thanks
@jstap I removed the "No Trade" block and it worked.
So what do you think has been the problem?
@jstap Thanks. I did it but no line is drawn.
Hello
I have a custom indicator (I have imported it) that gives me support, a resistant line, and buy and sell arrows. So I want to issue a trade when the arrow appears. I know a similar topic exists and I have read it. But the solution hasn't worked for me. I will attach the indicator screenshot and link to my project.
What can I do to make it work?
@l-andorrà Thanks for the reply. Yes, the buffers are OK. I checked them in MT4. The indicator doesn't repaint but it has a delay. I even have tried "comment" and "variables" to capture the values of buffers but the value is always 0. Since I can not see the values in buffers, how does MT4 shows them?
I have this indicator which finds previous swing high and low. I want to use it as signal generator for my ea. Whenever the it gives me swing high(on Buffer 1) or low(on Buffer 3) I want to enter SELL and BUY, respectively.
The problem is there a delay for this indicator to recognize the swing candle so I don't know how should I consider the condition.
This is my ea based on this indicator but no position is taken...
Thanks in advance.
I put comments to check if the values of so called variables are being calculated correctly or not which they were. But still no lock on Sell positions. So I found and used another custom indicator to give high and low based on a period and it worked.
@l-andorrà I used custom mql block to generate two variables.
This is the first one:
low_52_candle=iLowest(NULL,0,MODE_CLOSE,52,1);
low_52_price=Low[low_52_candle];
and this is the second on:
high_52_candle=iHighest(NULL,0,MODE_CLOSE,52,1);
high_52_price=High[high_52_candle];
Buy position works fine with "high_52_price" in block 17. But sell position doesn't work.
@Morpheus_0 Thanks but I don't think that's the problem, cause when I remove block 17 and 18 it takes sell positions even with the same buffer.
Hi
I have created an ea based on a low pass filter indicator and previous 52 candle high/low. The ea takes Buy positions but not even single Sell. Can anybody tell me what the problem is?
this the link : https://fxdreema.com/shared/S96Vy9SV
Thanks
Hi
I want to calculate this :
v=(highest value of price in previous 9 candle+lowest value of price in previous 9 candle)/2
and I want to open position when the candle closes higher than 'v' vlaue and a moving average at the same time. How can I do that?
Thanks