pls help
-
if i attach my ea here and point out the things i struggle with , will anyone be able to assist pls
-
Well, let us be honest. It will depen on the amount of time required to fix what you want.
Is it a big project? -
it is not big
i will attach ea
ive been using this site for about a week now , struggle with 4 things , PLS HELP
what i want ea to do is
block1 i want to trade all 28 pairs , but only load ea on one
chart to save pc speed THIS WORKS
11 i only want a max of 4 trades open at any one time
so i can control my money management THIS DOES
NOT WORK
2 ea may not open a trade on say GBPUSD when
there is a current trade open on that pair THIS
WORKS
3 allowed trading times THIS WORKS
4 spread must be lower than 4 THIS DOES NOT WORK
5&20 i set my acc growth target every morning , using
equity balance , once equity balance is reached , all
trades closes and trading for the day are done THIS
WORKS
6&7 condition - if a 1min candle moves with 10 pips a
trade is opened immediately ( not waiting for candle
to close THIS WORKS
8&9 buy or sell THIS WORKS
10 stoploss must trail immediately as price moves
THIS WORKS
12 takeprofit must trail immediately as price moves
THIS DOES NOT WORK
18,16,14 when in 10 , 20 and 30 pip in profit , 25% of trade
volume must close( going for 100 pip profit on last
25% of trade volume ) THIS DOES NOT WORK
22 all trades must close at 23h00 DID NOT TEST YET -
-
brilliant strat !!!
-
I have been looking for a way to close all trades once account grew with 1 percent , does your eq stop method work ?
i could not get ea to do that !
are you a coder ? could you make me an a on my strat ?
-
@matthew eq stop works yes
LOL no im still learning
-
@kop i like the fact that you load ea on one chart but it will trade multiple pairs
will use this for sure . i have 10 demo's and must load ea on hundreds op pairs every time i make even a slight adjustment
GOOD WORK
ty -
@joel-0 haha hope someone can help me with my problems
the main thing i battle with is where to connect some of he more advanced blocks
-
@kop must i have a tp value in my buy and sell bars ?
-
-
Why do you say the max number of trades doesn't work? Are you getting up to 5 open trades at the same time? I'm sure you will not get 6, am I right? This is so because 0 is lower or equal to 4 in the same way 1, 2, 3 and 4 are. This is why you get 5 open trades. If you want a maximum of 4 open trades, just put a 3 on that block.
-
Block nummer 14 is executed before block number 16 when that is simply impossible to achieve. You will never be able to partially close a trade at 30 distance BEFORE having reached 20 pips!!. Same for blocks 16 and 18. They are numbered in the opposite orders they are supposed to happen. You need to reorder them this way:
Now: 18, 16, 14.
Correctly: 14, 16, 18.Do not modify their settings, just thei ID numbers.
-
-
@l-andorrà thanks a lot so far
can you pls look at the trailing profit and spread filter as well pls
-
I already did it and I couldn't find anything wrong. However, I didn't test it.
-
@l-andorrà i wrote a little ea just to check the tradescount
i will att it
trades count is set to =or< than 4 . so it should open 5 trades .
it opened 56 trades
-
-
@kop I think your EA just do the check on the symbol the EA is attached to. Do you wnat max 5 trades per symbol or in total 5 trades?
I would instead of the many market switches use a list of constants and specify it on every related block. For example the check trades count one

You use option 1 but probably want option 3 in the description.
-
I changed the EA you attached the way I would build it.

And here is the result ..

It opened 6 trades. That is okay, as after EURUSD trades were opened, The check trades count was 4. So it passes once more. After GBPUSD it was 6 and hence it didn't open more trades.
-
@trader-philipps thank you for your trouble