Actually it needs to be a once per (daily) bar block. This will wait until the 1st tick of the day, once a day may try to work when there's no tick, so fail,
Best posts made by jstap
-
RE: Resetting variablesposted in Questions & Answers
-
RE: Question about strategy tester and objects on chart.posted in Questions & Answers
If ea is using the objects (not the actual value) then it will only work in visual mode.
-
RE: Question about strategy tester and objects on chart.posted in Questions & Answers
Yes, You can test to see if a small EA does something on non visual backtest
-
RE: Hello, I want to open a second level trade after 50 pips in this system.posted in Questions & Answers
Add the latest shared link
-
RE: why some blocks work in live but not in test?posted in Questions & Answers
Does it draw the line? It will likely be one of the blocks above, use a process of elimination, and remove blocks and test until you find the blocks causing this.
-
RE: The maximum number of transactions block is not working, where should I add it?posted in Questions & Answers
That's what I mean, if it's not working backtest until it does. Switch blocks off until you find the culprit
-
RE: HOW TO SAVE IN A VARIABLE THE INDICATOR VALUE AT THE MOMENT OF OPENING EACH NEW TRADE???posted in Questions & Answers
under but/sell block modify variable with the indicator inside
-
RE: close all at $posted in Questions & Answers
In a day? Light pink blocks need a dark pink for each above it. Above buy/sell, check profit (period of time) < x.xx, above close check profit (period of time) > x.xx

-
RE: is this a bug? or what? on counting open buyposted in Questions & Answers
modify variable to 0 - for each trade/position (buys or sells) - add 1 to a variable with a formula block. This should constantly check if any trades are running, if not reset variable to 0
-
RE: Trade statistics: Profit Factorposted in Questions & Answers
Good question but, it is likely the account
-
RE: how I can identify the candlestick with the highest volume during the dayposted in Questions & Answers
You can create this with FX blocks. but sometimes custom code works better and is easier, this will draw a line on previous day volume high candle, you can choose hour TF or current chart TF. Test on backtest, it is MT4 if you need MT5 and you struggle let me know: https://fxdreema.com/shared/XYlynIK4

-
RE: Slippageposted in Questions & Answers
Most forex pairs are converted with the project options, anything else will be points still, if you drag your cross hair over the terminal screen, you will get the points value to use.
-
RE: Custome indicator ORDERBLOCKposted in Questions & Answers
You can manually add indicators as you have done, spellings and order need to be correct. But 1st ensure in your terminal data window, there are buffers showing that has data you can access and use.
-
RE: HOPW TO OPEN ONLY ONE POSITION FOR EACH CROSS ?posted in Questions & Answers
Set up a test project you can watch visibly on backtest, use pass once blocks, switch on/off evert time a cross happens...
-
RE: Identifying Levelsposted in Questions & Answers
when this happens save the price in a variable, then use that variable as the new trade stop.
-
RE: Martingale for both buys and sells?posted in Questions & Answers
To do this you will need to set up manually, something like this, on trade tab - trade closed by (sl/tp whatever works for you) - conditions for placing a trade - for each closed trade/position buy/sell using the last trade lot from a loop adjusted to however you want the new lot to be.