I think you can access objects from another chart, but I didn't set this option on the "For each Object" block, so only the current chart is used
Posts made by fxDreema
-
RE: Object on chart on chart that EA is not running onposted in Questions & Answers
-
RE: The builder not working what should I do?posted in Questions & Answers
This sometimes happens because 3rd party software blocks the requests from the browser to the server. But I don't know why that happens and why this software does not like those requests

-
RE: Suggestion: Create Check loss (last close) blockposted in Questions & Answers
And in "For each Closed Trade" set the "Not more than..." to 1 in order to get only the latest trade.
-
RE: Find the current value of a variable?posted in Questions & Answers
You can't access those variables from another EA/Script, they are really internal and available only for the EA that created them. But there is another kind of variables that I call Terminal Variables, they are called Global Variables in MetaTrader and you can see them with F3. These can be seen from all EAs and Scripts. To set them find the block Terminal Variables. To get them... search for the same words in Condition block.
-
RE: UPDATE time, write here if you have problems!posted in Questions & Answers
@mohammad2232 It depends on the custom indicatpor as well, not all custom indicators are equal. are you sure that your custom indicator is supposed to work in these blocks?
-
RE: UPDATE time, write here if you have problems!posted in Questions & Answers
@elveli Define "Not working". I will never understand when "Not working" means. What is not working?
-
RE: UPDATE time, write here if you have problems!posted in Questions & Answers
@anse33 I'm not testing this block with the default settings, it looks fine

-
RE: How to remove or Stop EA from a chart?posted in Questions & Answers
I don't know how. I think that one EA does not have these privileges
-
RE: Alignment and size of the blocksposted in Questions & Answers
Only when you update the title. Their size depends on the text in the title. When the project goes into the database, there is no data about the blocks size, there is only a position of the block, while the size is decided by the browser
-
RE: How to remove or Stop EA from a chart?posted in Questions & Answers
You want to remove another EA? I only know how to remove the EA itself and there is a block for this called Terminate
-
RE: How to add StopLoss using custom indicator Pricesposted in Questions & Answers
I don't know, it looks that all of this is to be put in a custom block
The situation looks to special to be handled by the system blocks -
RE: count object like tradeposted in Questions & Answers
If you use the Condition block to select the object by name, then if there is no object, the Condition block won't pass. On the right side you can put > 0
-
RE: Example with the TrueTL indicator in EAposted in Questions & Answers
With the block I don't know how to find that object that is closest to the price, especially when the object is a trendline and the value needs to be calculated. Even if this is possible somehow, it will be hard to make, with many blocks and variables. If you need something that special, I think that some custom block is best.
-
RE: Simple script not work!posted in Questions & Answers
That "Draw Button" block may draw a button, but the next block 4 does not work with that button. Put "For each Object" before block 4 and point it to the button somehow. Now, note that objects have unique names and if you know the name you can select the object directly. But if you don't know the name, then you search for the object in the pool of objects. Here is more: https://fxdreema.com/examples#Chart-Objects
-
RE: Issues with my multiple EAsposted in Questions & Answers
There must be problem with what is downloaded. I touched this as well, but I can't easily say what exactly is wrong. I was able to download your "Testing" EA normally.
What browser do you use? If it's Chrome, do you use the plugin? If you use it... try to get the updated version (I updated it and it shows 0.3 now)
-
RE: TP EAposted in Questions & Answers
If you created trades manually, the EA won't touch them and this is normal. If you want to work with manually created trades, just set the Magic number in the project settings to 0.
Otherwise if you want to close only those trades who made certain profit, there is a block "Check profit (unrealized)"
-
RE: How to open positions at each signal with maximum orderposted in Questions & Answers
Candle 0 > MA is not a single, it's just that the current price is higher than the moving average. Maybe you imagine the crossover, when the price crosses the MA line. In this case try "x>" instead of ">".