@adeildo I said what to above, make a test project, if you struggle to get working put a shared project here with a description of problem you are having.
Posts made by jstap
-
RE: How do I put Stop Loss on a draw line?posted in Questions & Answers
-
RE: How do I put Stop Loss on a draw line?posted in Questions & Answers
@adeildo Use custom level in SL/TP use object on chart with the name of the line, if not working put all in a comment block so you can see what's happening.
-
RE: pls i need blocks for these two custom indictors,i wont the EA to execute trades when the blue crosses the yellow emaposted in General Discussions
@santabells Not sue that this is what your asking but, a condition block with blue EMA in left operand X> yellow EMA in right operand.
-
RE: How? - Do not open if a trade has been close manually.posted in Questions & Answers
@dreematrade A pink for each closed trade block with manual trade inside, reset a variable to 0, then add 1 per bar, in the buy/sell tree check with a condition that variable value is > 3.
-
RE: How to get a sell pending order to activate once a previous pending sell order is triggered.posted in Questions & Answers
@harryhaza1999 Use the on trade tab, purple trade created block (when a pending becomes a trade), under place the order you want.
-
RE: Does entering at Candle ID (1) vs (0) make any difference?posted in General Discussions
@tashab Never noticed this happening, try putting the once per bar block under the condition.
-
RE: Entering a number to a variable during active tradingposted in Questions & Answers
@rodrigo-ortuzar On init draw the edit field, read it with object on chart.
-
RE: How do I put Stop Loss on a draw line?posted in Questions & Answers
@adeildo Is a lot easier to create the lines on EA start, maybe reset when wanted so they don't go off screen, this way they are called a specific name and you can use object on chart with the name you choose, save level into a variable, when creating object make it selected.
-
RE: Same TP multiple tradesposted in Questions & Answers
@cri760 The add to volume block will use original TP etc, I only use trail under a if trade block, under pink will only work when true and only if a dark pink for each block is on top.
-
RE: How to open new trade when a trade is closedposted in Questions & Answers
@jacksonuk Read your last post then! The answer you want was there if you deleted before learning what you need, then the problem is yours.
-
RE: Entering a number to a variable during active tradingposted in Questions & Answers
@rodrigo-ortuzar Probably but you want to draw on init, then read on another, be careful that you don't get multiple alerts, normally you need something to limit alerts.
-
RE: Same TP multiple tradesposted in Questions & Answers
@cri760 Below pink should use in loop, if you want existing/closed trade info, all pink need a for each dark pink block above.
-
RE: Connect multiple blocks at onceposted in Questions & Answers
@iagnew You have 2 ways, the AND but normally unnecessary, if you connect one to the next then the next to the next etc all in a line then every block has to pass, as soon as 1 is un true, the tree will stop passing.