I think it is possible using custom code block ... each chart have own ID ... and it is tricky ... not very certain, better use one chart 
Posts made by miro1360
-
RE: how to compare objects on two different chart that is i want to get object value on another chartposted in Questions & Answers
-
RE: How do I get absolute value of a number?posted in Questions & Answers
lets say you have variable varNumber and this must be converted to absolute value, than
use custom code block with this code inside:varNumber=MathAbs(varNumber);
-
RE: CANDLES COMPARISONposted in Questions & Answers
@roar
ichimoku and others with "future forecast/plots" can have negative IDs :simple_smile: -
RE: Re: Testing pass stopped due to a critical error in the EAposted in Bug Reports
maybe it is problem with metatrader itself, because they are doing updates which do a lot of indicators and EAs not working anymore and they dont care, people can request thousands tickets and even with next updates problem is not solved

-
RE: Video Tutorial - Signals Dashboard EA [advanced] - looping Objects, arraysposted in Tutorials by Users
I think this can be also possible, now try this yourself, practice give you skills and post here what you found :simple_smile: ... the harder you try, the better skills you get ... when you fail, I look into that problem

-
RE: Video Tutorial - Signals Dashboard EA [advanced] - looping Objects, arraysposted in Tutorials by Users
and here is version with reduced blocks and next loop, it is bit complicated but working as well

https://fxdreema.com/shared/WQsSTrfte

-
RE: Video Tutorial - Signals Dashboard EA [advanced] - looping Objects, arraysposted in Tutorials by Users
hope this example helps you:
https://fxdreema.com/shared/HeInsuWfe
or import this into your projects to see all variables: 0_1500932938973_testMT5_01.mq5it have few custom code blocks but result can be satisfied for you


if you are using a lot of timeframes, it can be even simplified (I mean blocks count reduced) with next loop in loop ...


-
RE: Re: Testing pass stopped due to a critical error in the EAposted in Bug Reports
at least I found, why it freezes while testing, set in blocks "pips away from open-price" parameters as this picture:

Reference price: Ask for Buy ...
Open Price belongs to... ... the parent position... than tester works (or at least for me on simplified model) ....
this is simplified : : :
because you know ... you need create simplified model where problem is replicated ... no one from here have motivation to resolve hude projects and looking for what is not ok


-
RE: highlow pedding order zigzag breakout ea (for gold)posted in Questions & Answers
ok so try something other ... download attached indicator, this indicator plots horizontal lines on the chart, than let EA read these lines:
0_1500827981744_ZigZag line v1c.mq4EA
https://fxdreema.com/shared/QCGYFT3Ddyou are able test EA only in visual mode and when you run this EA, dont forget place indicator into chart (because lines must be ploted on the chart - EA reads them) ... note, that you dont need import this indicator into My indicators in fxdreema, because buffers are not used
you need edit EA based on your criteria
... -
RE: highlow pedding order zigzag breakout ea (for gold)posted in Questions & Answers
I think, when working with zigzag, better if you look for something what is done, like here:
https://www.forexfactory.com/showthread.php?t=226645
or google for it: https://www.google.sk/#q=zigzag+breakout+eabecause working with zigzag is not easy ...
-
RE: Select Object By Name - Several Objectsposted in Questions & Answers
when it is few objects (like 10 or so) than I think it is better to check like your example ... but if it is 100 objects, than something in loop:
https://fxdreema.com/shared/d58Pplmmc
or maybe simplier solution exist, I dont know
... but object name in loop (prefix) must differ from "fx" because "fx" (as fxd) is used by default fxdreema objects ... -
RE: trendlinesposted in Questions & Answers
yes, with horizontal it is similiar, horizontal is only price (without time) - so basically it is simplier

-
RE: Give my variables eternal lifeposted in Questions & Answers
this is problem with metatrader, because variables are deleted when EA is closed ... so idea may be store these variables as "global" or terminal variables, this:
https://docs.mql4.com/globals
as you can read, they are stored for one month and than automatically deleted, and also they are shared with tester and all EAs in terminal ... so be careful

next option can be save variables into file, and than read this file (but it needs specific custom code) ...
-
RE: Tutorial 06 - My Indicators in fxDreemaposted in Tutorials by Users
this with next trade is complicated, because here can be many ways for answer "when" open this next trade
..... one from ways ... if first trade is opened, this signal still valid ... so you can wait until this signal disappear and than when is here new signal appear, open next trade .... for this search here in forum for "switch" or "flags" .. I replied this question few times ...

