I can add the Stochastic indicator?
-
Hi,
I want to ask how I can add the Stochastic indicator in FXDreema so that it gives signals according to the trade direction. Basically, I want it to take only one buy signal at a time and then one sell signal — not repeated signals.
Can you please guide me on how to set this up in FXDreema? -
Try putting the condition linked to your but/sell block.

-
“I followed what you told me, but it is placing both buy and sell orders at the same time. I want it to work in such a way that if it gets a buy signal, it should only place a buy order at that moment, and if it gets a sell signal, it should only place a sell order.”
-
@l-andorrà Hi, I hope you're doing well.
I need some help with my EA setup.
Right now, it is placing both buy and sell orders at the same time.
I want it to work so that if there is a buy signal, it should only place a buy order, and if there is a sell signal, it should only place a sell order.
Could you please guide me on how to fix this? -
Sopping buy/sell at the same time is relatively simple, there will be a reason why it is getting a buy/sell signal at the same time, add your latest link. Generally when testing, turn off 1 of your buy/sell trees so you know which one is placing the unwanted trade.
-
@jstap “Okay, I will share the link now.”
-
maybe, but add your latest shared link to asses what might be causing this
-
-
in trade (loop) needs to be under a for each block, so the trade order needed is selected before using.
For now turn off one side of your tree to see what is causing the extra trade.
-
“Can you please make the changes for me? I tried but I’m not able to fix it. If possible, please adjust the blocks correctly so that it only takes one trade at a time. Thank you.”
-
I don't mind helping, but all I have suggested is what you should be able to do simply, and you need to understand why I am saying it, this is how you learn what you need to do so you do not have to constantly request help. Add 2 for each position blocks above modify, and switch off the right side of both trees. Then you can ask about any more problems.
-
“Okay, thank you. I’m not able to do it properly, but I appreciate your help.”
-
Ok, if you change, test, you will learn, then you can ask and improve.
-
“Yes, I understand. I will try to change and test it. Thank you for helping me.”
-
https://fxdreema.com/shared/3c6A0Wj3c
It’s fine for now? -
Yes it's fine, I would set to 1 if you are only working with the last trade (not important, just limits the EA work). Let me know what it's doing now
-
It’s still doing the same thing as before. It is opening both Buy and Sell orders at the same time. I want it to take only one order — either Buy or Sell based on the signal, not both
-
Looking at this it looks like the stoc < and > will be true at the same time, I don't use this indicator, but maybe you need to use 2 conditions per tree... if < x.xx and > x.xx place trade, this will give you a window for placing a trade.
-
Okay, I understand. So you mean I need to create a range using two conditions, like Stochastic < X and > Y in the same tree, so that the EA has a window for placing the trade. I will try this