This wasn't selected, add the latest link and ay what it's doing...
Posts made by jstap
-
RE: how to close manually opened trades according to profit percentage. why this project not working ???posted in Questions & Answers
-
RE: Trailing stopposted in Questions & Answers
In a separate tree I would put trail under an if trade block
-
RE: deleted orderposted in Questions & Answers
by ads do you mean trades? If so you have the expiry in the buy/sell block
-
RE: How to avoid correlated pairsposted in Questions & Answers
In EURUSD EUR is the quote and in USDCAD USD is the quote, so I do not see how this makes a difference. All this is doing is checking if the current symbol is different to running trades regardless of the base/quote starting value.
-
RE: Need help hereposted in Questions & Answers
Use a lot variable, in custom code put this:
if (AccountBalance() < 10000) {LOT =0.01;}
else if (AccountBalance() > 10000 && AccountBalance() < 20000) {LOT =0.02;}
else if (AccountBalance() > 20000 && AccountBalance() < 30000) {LOT =0.03;}continue this as you need, test an say if it works.
-
RE: how to close manually opened trades according to profit percentage. why this project not working ???posted in Questions & Answers
What trades is this trying to work with? Try using a pink close block:

-
RE: Trailing stopposted in Questions & Answers
Probably although I have never done this, I assume yellow will be active except for a split second every bar.
-
RE: Trailing stopposted in Questions & Answers
Trailing will move for any trade, group will move for all but also move back, I only use for each trade
-
RE: how to close manually opened trades according to profit percentage. why this project not working ???posted in Questions & Answers
Light pink needs a dark pink for each block above
-
RE: Need help with to make a functioning sell blockposted in Questions & Answers
Add a shared link to see what you mean
-
RE: EA only opens 1 trade, when there are 5 conditions, what am I doing wrongposted in Questions & Answers
That's the builder page, not the project link. Project page - projects - create a link - open in a web browser - copy address bar - paste here
-
RE: Please help me! how to re open order when the ea running sl or tp auto..posted in Questions & Answers
Add a shared link rather than a picture, depending on exactly what you mean but probably, on trade tab - trade closed by stop loss - buy/sell
-
RE: Can condition block parameters be put in variablesposted in Questions & Answers
Change the type into an int and see what that does
-
RE: Loop back checkposted in Questions & Answers
In the comments of miros code you can get the mt5 version, it contains a few more blocks "accourding to miro to adapt for the crazy mt5 logic"
-
RE: custom indicator with ENUM as optimazation variableposted in Questions & Answers
I was trying to help you but I am not signing up anywhere to do so. Create a different name enum so when selected in input it activates different blocks.
-
RE: custom indicator with ENUM as optimazation variableposted in Questions & Answers
Put the indicator here and I'll have a look, maybe try a different name
