One EA several signals
-
Hi All
Just curious.
Lets say I wanted to make a candlestick pattern EA, Hammers, Inside Bars, Engulfing Bars and MA cross over
so 4 types of trades but I want to run each of them in the same ea.
Would I just make 4 groups of blocks? giving each one its own set of conditions and buy orders and what not?
Cheers
Deadllee -
Yes, of course. You can do that @Deadllee. But it you're not a paid member, you'll need to split every group 1 ea each, as long as the structure doesn't exceed 10 connections.
-
I want to make an EA exactly same like this, one EA with several condition of signals to open order, rather than make a new thread, can i join here??
i already make this but didn't work as my expectation, even i can said it is totally not working.
do you have an example or tutorials to make an EA like this?
What is logic behind this EA to work??
i have 6 setup / signals to buy, and so for sell (opposite of buy setup), totally i have 12 setup for buys and sells.
i make a condition per signal ended with buy and sell order, and it didn't work.
then i make a condition per signal ended with modify variable as a boolean True or False, then using this variable as setup to execute buy/sell order, but also didn't works.
so please help
-
Hi @aeivan , just make sure you set different group for each strategy, buy/sell.
-
i found this for my reference
https://fxdreema.com/shared/leqyFBBXc
thank you -
I'm a full member i love the program just learning to use it and make profitable EA is the challenge haha that's what we are all here for haha.
so to clarify one signal one new whole block same page with it own buy/sell conditions and what not? or can you do it all in the on block?
just from each signal tree you link to the same buy/sell conditions (same risk/TP)
What my goal is to make a EA that trades 3 patterns
once i learn more about other indicators i'll look into adding them
Inside Bar
Engulfing
HammersCheers
Deadllee -
@deadllee This is the easiest way to do it, yes. You can do it in a more efficient way by creating a common block tree for all common conditions and then divide it into 4 different subtrees.
On the other hand, if you want to use candle patterns, I strongly recommend you to use custom indicators. Otherwise you will spend months to get al you want by using fxDreema blocks only.
-
This is what i have so far but its not doing what i want it to do
And i cant figure out where i went wrong
https://fxdreema.com/shared/c7bKf0f7e
It opens to many trades like 200+ (max Account)
it wont close the pending orders that aren't filled or it insta closes themand it open open more then one trade as a time for each signal
I'm trying to get the EA to run every signal so it buys/sell every signal of conditions
Any help
Cheers -
@Deadllee , change Open per tick block to Open per bar block. That should solve the problem.
-
Awesome will try that out thanks