More like this, on init I set the count to 3 so it will waait for the cross before entering the trade: https://fxdreema.com/shared/fUAo3xDdc
Posts made by jstap
-
RE: Conditions True > Delay 2 seconds > Enterposted in Questions & Answers
-
RE: Save ATR Value on the last 10 tradesposted in Questions & Answers
You can get the ATR value from candle ID, you just need to know what the ID was when the cross happened
-
RE: Conditions True > Delay 2 seconds > Enterposted in Questions & Answers
That's the builder page, not a link to your project
-
RE: Conditions True > Delay 2 seconds > Enterposted in Questions & Answers
constantly add to the variable, just set to 0 when conditions are true.
-
RE: Conditions True > Delay 2 seconds > Enterposted in Questions & Answers
once per second add 1 to a variable, when conditions are true set a variable to 0, and check this number to wait.
-
RE: identify candleposted in Questions & Answers
single candle template will check it the candle fits the parameters of a Doji. Current candle (forming candle) is 0, previous (closed) candle is 1, etc.
-
RE: Save ATR Value on the last 10 tradesposted in Questions & Answers
This will do it, create as many variables as necessary. Will work the same on MT5: https://fxdreema.com/shared/sC3YsM8Fb
-
RE: no encuentro el primer bloqueposted in Questions & Answers
This is a line on your chart? If so you can return the value by using the name and object on chart...
-
RE: SL/TP configurationposted in Questions & Answers
That will give you the price, so something could cross over it, but it cannot cross over anything
-
RE: Candle High - Two Vertical Linesposted in Questions & Answers
@Miststallion1 This will give you the day offset, just replace variable with yours, will work on MT5: https://fxdreema.com/shared/eXUyENCre
-
RE: Candle High - Two Vertical Linesposted in Questions & Answers
@Kim98 Message support and they'll sort: https://fxdreema.com/support
-
RE: SL/TP configurationposted in Questions & Answers
Not too sure if this will give you what you want, but market properties high or low over 15 candles, will give you the highest/lowest price has got to over the last 15 candles.
-
RE: Calculate Risk for Gridsposted in Questions & Answers
This is an example for buys, I added a pips away value for new trade, as using stop would mean the original trade would close at the same time. You can set these numbers to what works for you.
-
RE: Calculate Risk for Gridsposted in Questions & Answers
on charts distance between a and b (high/low/time) is measured in points/pips, so 1 stop loss is 1 take profit, so when pips away from open price = 0.00 add a position.
-
RE: AND Block Clarificationposted in Questions & Answers
You can, as long as both connected conditions are true at any point thy are connected, the AND block will pass.
-
RE: AND Block Clarificationposted in Questions & Answers
This is an example of how I use it: https://fxdreema.com/shared/x6emCuVde
-
RE: AND Block Clarificationposted in Questions & Answers
AND is effectively one block above another connected through orange (if this is true, and this is true connected through orange) pass onto the next via the orange dot, but sometimes you want to use a block being true and another being true from a different block in a different tree, to do something, so a AND block would work well.
-
RE: Problem Implementing Lot Size Reduction After Closing Oldest Tradeposted in Questions & Answers
I have never done this, but the close partially needs to go under a for each trade loop block.