How to plot simultaneous trades?
-
Hi there,
How can we plot if I want to do simultaneous trades with 2 conditions.
For example:
- If condition 1 is executed, another condition can be executed also without affecting the others.
- I noticed that if i open a buy position, the bot wont execute a sell position unless it is close due to SL or TP. I want to execute both with out affecting the other.
Thank you for your help.
-
Some more info would appreciated.
a) Do you need a buy and a sell open at exactly the same time?
b) I don't fully understand point 1. Which are 'the other' conditions exactly? I understand they are not condition 1 and 2 maybe? -
@l-andorrà I think he means 2 seperate, independant strategies.
In that case use groups. 1 group each strategy.
-
hi,
okay let me try to put this into a sample.
- Im using EMA 10-50 Cross over for both buy and sell. When ema 10 crosses above 50 the bot open buy trades, but sometimes, the volume is so small it is not able to hit TP and reverses back.
Now, the ema 10 crosses below ema 50 now so basically it should be a sell position. The problem is, if the buy position is still open, the bot wont open a sell position even if the Ema crossed already.
- my second condition is im am using bulls in a row + ema crossing. Im also having a problem why it cant trade simultaneously.l It also waits for the other one to close before it open another one.!
Hope this helps
-
Ok. If I understand it correctly:
-
You want a buy when EMA10 crossing up EMA50 and a sell when crossing down. For that you need to use a 'No trade' for buys and another one for sells. If you want more than one buy or more than one sell at the same tiem, simply remove those 'no trade' blocks.
-
Look at answer 1.
If you need more detail, please share your project.

-
-
thank you bro!
-
Tried removing the No trade block, now its trading in 1 candle like crazy.

What i would like to have is 1 trade only for buy or sell every time the MA's are crossing each other but they can be simultaneous.
example
- When ema 5 x> ema 50 then it should open 1 buy trade.
- When Ema 5 x< ema 50 then it should also open 1 sell trade.
- If the buy trade has not yet made TP yet the market went down, it should be able to open 1 sell trade at the same time when ema 5 x< crosses 50 leaving the buy trade open or wait for the SL to be hit.
-
The most efficient way is looking at what you have now. Can you please share your project?