once a day? if so once per day block - delete
Posts made by jstap
-
RE: Delete Object By Eventposted in Questions & Answers
-
RE: Conditions True > Delay 2 seconds > Enterposted in Questions & Answers
That is the only way I know how to, you could set comments so it says what the seconds are, and watch it set to 0, will show you where things are possibly failing.
-
RE: Conditions True > Delay 2 seconds > Enterposted in Questions & Answers
No there is 1, it just sets it to on init
-
RE: Conditions True > Delay 2 seconds > Enterposted in Questions & Answers
Then it will place a trade at the start, ignoring the ma cross. This is not the finished way to do things, just a way you can watch, before adding and changing so the bot does what you think is best.
-
RE: Delete Object By Eventposted in Questions & Answers
I'll help, what condition happens to say delete everything on tick? On init only happens at bot start
-
RE: Save ATR Value on the last 10 tradesposted in Questions & Answers
I do not think you can check previous candles for crosses, but you could have this constantly update, ready for when you need it.
-
RE: Conditions True > Delay 2 seconds > Enterposted in Questions & Answers
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
-
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.