@julianrob Your welcome
Posts made by jstap
-
RE: Commands don't work on all pairs, only some?posted in Questions & Answers
@julianrob The modify stops block needs a for each trade block above, you don't need the if trade block.
-
RE: I have no experience in programming , when trying to build an EA , it keeps multiplying positions , please I need the proper settingsposted in Questions & Answers
@blunt Put a shared link here so problems/reasons can be assessed, help can be then given.
-
RE: EA that can buy on a support and sell at resistanceposted in Tutorials by Users
@chokumanyara To start with you need to decide what is being classed as support resistance, maybe find an indicator.
-
RE: show/hide comment blocks with button or infoblocks on chart ?posted in Questions & Answers
@akallai86 From what I know you can only delete the orange block comment, what is this not doing?
-
RE: show/hide comment blocks with button or infoblocks on chart ?posted in Questions & Answers
@akallai86 Try this (not tested), should also work on back test: https://fxdreema.com/shared/TDvc3zGob
-
RE: Modify stops of trades - Modify SL only, leave TP?posted in Questions & Answers
@julianrob Make sure is under a for each trade block, is the only way of selecting buys and sells independently.
-
RE: EA that closes all positions if +X/-X% is hitposted in Questions & Answers
@telfordstarb Something like this, just add this to your project:
-
RE: Trailing stopposted in Questions & Answers
@rodrigo-ortuzar It can be but unnecessary, the start is when you want it to start, if left on 1 it will still wait for the step, you could put something like 60 in there, it would then wait for 60 pips before it started to trail by 20 and step by 20.
-
RE: show/hide comment blocks with button or infoblocks on chart ?posted in Questions & Answers
@akallai86 You can show hide any orange draw block with a button, make a project, share link here, ask questions about any problems you are having.
-
RE: Showing info from a Block in Commentsposted in Questions & Answers
@pipologist There are different ways to do this, account profit will show the current running trades, you can use bucket of trades to get any number you want, put a shared project with what you can't get it doing.
-
RE: Modify stops of trades - Modify SL only, leave TP?posted in Questions & Answers
@julianrob What you have is how to modify but you will have to find the ATR value for when you want to move, have a look here and put a shared project, help can then be given.
-
RE: Trailing stopposted in Questions & Answers
@sirluk Make trailing stop same as stop loss, make trailing step the same as stop loss, if your SL is 20 and your step is 20 every 20 pips the stop will jump to 20 pips pips behind price.

-
RE: Delete objects after x candlesposted in Questions & Answers
@bagheria Using candles is probably easiest, once per minute bar add 1 to a variable, reset this to 0 when your condition is filled, use a condition variable = 60 delete object.
-
RE: Trailing stopposted in Questions & Answers
@sirluk Trailing stop is much easier when used with pips, to use money you have to use multiple blocks probably something like when profit = $200 a variable records the price, when profit = $400 SL or close trades block needs to be set to the price level.
-
RE: EA that closes all positions if +X/-X% is hitposted in Questions & Answers
@telfordstarb You need something like, when a trade is placed use balance/100*required % put into a variable, in a condition block when profit = variable close all trades.
-
RE: comment with count of running tradesposted in Questions & Answers
@littleleg Bucket of trades block connected to a comment block with bucket of trades count inside.
-
RE: EA to buy when evening star pattern fail and sell when morning star pattern failposted in Questions & Answers
@arrow82 I may be wrong but I doubt any one will create your whole EA, if you make a start (get the morning/evening star working) then many people will help you create. Once started put a shared link here and ask about any problems.
-
RE: How to get number of active(open) Buy and Sell positions?posted in Questions & Answers
@prot82 Group of trades block, connected to modify variables block and group of trades count inside, create 2 trees one for buys and one for sells.