Many thins don't work on strategy tester
Posts made by jstap
-
RE: Error "URL does not allow for web request" in Strategy testerposted in Questions & Answers
-
RE: first trade buy/sell limit after this 1 trade each 1pipposted in Questions & Answers
no trade/order-buy/sell. Pink for each trade-pink once per trade-buy/sell
-
RE: Calculate distance between two moving averagesposted in Questions & Answers
You can not create an indicator, < or > tells you if MAs are apart, you can adjust + or - x.xx pips to wait until they are spread enough
-
RE: bug in free account robotsposted in Bug Reports
Free accounts are fully functional, you just cannot download if more than 1o connections.
-
RE: HAVING PROBLEM WITH CHECK DISTANCE MT5posted in Bug Reports
This is because the line created multiple lines, by doing this a number is added COOL1 etc stop it creating multiple and it will work:

-
RE: ORDER BLOCK NOT WORKING ON MT5 DESKTOP APPposted in General Discussions
Need more information on what you have done, and what isn't working
-
RE: Pip Valueposted in Questions & Answers
The code is in downloaded mq files, but to use you would have to strip out and add to custom code
-
RE: HAVING PROBLEM WITH CHECK DISTANCE MT5posted in Bug Reports
As you have it, but crossing the line instead of above
-
RE: HAVING PROBLEM WITH CHECK DISTANCE MT5posted in Bug Reports
To do that it would need to be another x>
-
RE: HAVING PROBLEM WITH CHECK DISTANCE MT5posted in Bug Reports
You are drawing a line, does it draw, and can you get the value?
-
RE: HAVING PROBLEM WITH CHECK DISTANCE MT5posted in Bug Reports
Is this drawing a line? Test the value by putting the object on chart into a comment
-
RE: % of open trades in profitposted in Questions & Answers
This was creating a 0 divide error, works now: https://fxdreema.com/shared/PI2ITn36b
-
RE: How to find the opening prices of end orders (highest and lowest)posted in Questions & Answers
Reset variable to 0-loop through orders-check if < or >- save price if < or > in the variable
-
RE: % of open trades in profitposted in Questions & Answers
I haven't tested this, but all is from tried and tested techniques, reset variables to 0 above the loop, and put the variables into a comment to check the result. When I get a minute I will check
-
RE: % of open trades in profitposted in Questions & Answers
set variable to 0-In loop check profit, if > 0 add 1 to the variable, do this in another tree to add running trades, divide the winning trades by the running trades and multiply the result by 100, if the result is >75 close all trades: https://fxdreema.com/shared/4G6s5qpKd
-
RE: SMART MONEY CANT RUNposted in Questions & Answers
Any variables called in custom code, still need to be created
-
RE: Please Does Anyone Know How To Close All Positions Exact Pipsposted in Questions & Answers
It will with a few trades (especially on backtest), but have a large number over a long duration and it won't
-
RE: Orders not executed by news volatilityposted in Questions & Answers
I kind of explained my reasoning to this here: https://fxdreema.com/forum/topic/20102/please-does-anyone-know-how-to-close-all-positions-exact-pips/3 Even large prop firms restrict this because they cannot execute operations exact or quick enough
-
RE: Please Does Anyone Know How To Close All Positions Exact Pipsposted in Questions & Answers
I don't think that is how it works, I think this is how long a command takes to get from your terminal, then the broker acts on the command, then your terminal gets a confirmed operation response, and this continues until all have closed. This is why news events are hard to EA trade, with the speed of tick changes, and the number of people asking for actions, brokers/terminals struggle to keep up. However, this makes little sense to me because if you click the x on a trade on your terminal it closes immediately. I think this has to do with the liquidity of the chosen market at the time, and also why slippage can at times be large. I have tried moving all TP/SL to above/below/on close price but trades still too up to 1 minute for each trade to close, and it starts with the most recent.
This just made me think that possibly starting the loop old to new might speed things up...