Nor do I, but the only way of possibly understanding it to see the shared link, if you want create a small test project, and share that.
Posts made by jstap
-
RE: Custom lot size mis matchingposted in Questions & Answers
-
RE: how to add X grid trades after N pips drawdownposted in Questions & Answers
Pink blocks work in 2's, you need a for each block first, the picture is a basic idea of how to achieve this...

-
RE: Custom lot size mis matchingposted in Questions & Answers
Show your project link, so we can see what you are doing/trying to do.
-
RE: "How to change lot size per weekday in FXDreema without day of week option?"posted in Questions & Answers
Mimic this for all 5 days:

-
RE: "How to change lot size per weekday in FXDreema without day of week option?"posted in Questions & Answers
2 blocks for every day, weekday = x.xx, change variable to x.xx, change the same variable every day, and use this variable in the lot size section of relevant blocks
-
RE: Eliminar ordenes pendientesposted in Questions & Answers
On trade you have to start your tree with a (on trade specific) trade closed, this is the block (line of code) that activates all the blocks (code) you have on trade:

-
RE: Getting few bool values from custom blockposted in Questions & Answers
Ask AI (something like chat GPT), the settings are whatever tab you are using on in this case it will be on tick, global variables are likely correct (but AI may add or remove), then there's the custom functions section, you may not need to add anything here, let AI decide, the first line in settings needs to call the custom function (if ones used by using the name (the first line) of the function, Say all this to AI, give it your code and the sections it's in, it will then advise changes, then test what it gives you, any compile errors you get on the the used project will tell you and AI where the problems lye, anything can be used in custom block code that you have change in inputs, the code just needs to reference it. GlobalVariableGet() for example will get the value from anything the custom block has set.
-
RE: What does the EA remember when restarting MT4/5?posted in Questions & Answers
They are not always removed, but at times I have restarted computer, loaded MT and line's etc have been missing.
-
RE: Trail Stop Helpposted in Questions & Answers
The link is for the builder page, not your project. You want to use pink blocks, for each trade - modify stops
-
RE: Lots Limited by % of Balance - American NQ marketposted in Questions & Answers
It has been noticed before that the % number used in this needs to be a lot bigger than expected, try 1000 and see what happens
-
RE: Placing Pending Orders on WRONG VALUESposted in Questions & Answers
Maybe, not the 1st time GMT time doesn't appear to work correctly. If you use meta trader code it will probably work (I use server and just change the input time to match). On mt4 GMT in backtest uses server time.
-
RE: find Candel Fullposted in Questions & Answers
Or you could use soincle candle template and minimise wick size by %

-
RE: What does the EA remember when restarting MT4/5?posted in Questions & Answers
Or just draw the line in your EA before using, generally using the price rather than a visible object makes more sense, but these will be deleted when closing terminal/removing EA from chart, so a global variable would need to be used, you could then use this price to draw the line.
-
RE: Want to create a custom indocator based on fxdreema EA logicposted in Questions & Answers
yes you import the MQ file and all buffers are added, import the EX file and you have to manually add things, like buffers, on your project page you have the my indicators tab, to check it has relevant buffers open the data window on your terminal.
-
RE: Want to create a custom indocator based on fxdreema EA logicposted in Questions & Answers
You can use code in a custom code block, or you could create a custom block, this is hard work though, pass the code to AI (chat gpt/deepseek) and say what you would like to do with it, try custom code first, then if needed try creating a custom block.
-
RE: Large Trade - Trade Results Questions In Backtestposted in Questions & Answers
Not sure, only thing I can suggest is set levels to a set amount of pips, check the values and the distance on backtest, ctrl will give you the cross hair to drag between levels. Personally I would use a process of elimination, so remove blocks/what a block s doing and see if problem disappears, then I know where it is and what to test to fix.
-
RE: What does the EA remember when restarting MT4/5?posted in Questions & Answers
None will, blocks that do the calculation there and then don't need to, other than that only something that saves data to a global (terminal) variable can remember.
