yes it is also possible
but you must learn how to work with fxdreema
try with demo, it is enough to learn a lot of things
Posts made by miro1360
-
RE: Can fxdreeema make ea thath recognize double top/bottom , head and shoulder , horn top/bottom?posted in Questions & Answers
-
RE: Renko patterns drag n drop into ea database?posted in General Discussions
yes this is possible too but you must learn basics how to work with fxdreema, start with help section, examples, tutorials and replies in forum, practize all and you can do all what you need

-
RE: Median/Mean Renko Bar Pattern Recognitionposted in Questions & Answers
I think you can for MT4 and offline renko chart, you must learn basics of fxdreema
-
RE: Modify Stops of Trades Blockposted in Questions & Answers
this combination?
I am not sure, try it ...
-
RE: What is this input?posted in Questions & Answers
it is checkbox field in one of blocks, check blocks for this input checkbox
-
RE: 4 and 5 digitsposted in Questions & Answers
yes I think so, because 5 digits broker is automatically converted to 4 digits ... based on this in settings:

in point formats can be specified also special pairs or instruments ... default is should be that 5 digits broker is converted to 4 digits
-
RE: Draw Lineposted in Questions & Answers
note, that first recommendation with change in code for initialization can be done as this:

in first change when you switch chart TF with attached EA, than inputs are updated - and it is not what you want ..... but this second change do not touch inputs when chart TF is switched ...
-
RE: Draw Lineposted in Questions & Answers
-
- EA is working in way, when parameters are changed, than "on Init" section is skipped (so your trendline is not updated) ... you must remove EA from chart and than attach it again to full update (or change it in code, I posted few times how to do it - but this is not so elegant because you need do it again and again manually after each change in builder) .... not sure how to help you here with this ...
but this is the part of code:

- EA is working in way, when parameters are changed, than "on Init" section is skipped (so your trendline is not updated) ... you must remove EA from chart and than attach it again to full update (or change it in code, I posted few times how to do it - but this is not so elegant because you need do it again and again manually after each change in builder) .... not sure how to help you here with this ...
and do comments to disable it:

and click Compile button (in metaeditor)
... you are working with "hidden" values and if you want exactly answers for this, instead of flags you can use your own variables as "flag", set variable1=0 to be false or variable1=1 to be true, or any other value and than compare it with condition block ... you can than display these values on chart with comment block to see its actual value ...
yes you can set trendline on current bar (not exactly current bar, because trendline need at least 2 bars, so candle 0 and candle 1 are needed, without shift in time)
, set parameters:

when you remove EA, trendline should stay on the chart, also when you "switch" TF to another (lower) TF, trendline is shown ... for higher TFs is not displayed for logically reason ...
-
-
RE: How connect between option candle and constants ?posted in Questions & Answers
I think it is not possible ...
-
RE: Any way to do this with indicators?posted in Questions & Answers
not sure if I help you, it needs few lines of code ...
you can use global variables to communicate between EA and indicator, and in indicator code you set few "options" based on global variables for indicator appearance
https://docs.mql4.com/customind/setindexstyle
SetIndexStyle(0, DRAW_NONE, EMPTY, EMPTY, CLR_NONE);or as you mentioned, using templates ... standard it is problem, but you can use my cheatsheet for saving variables into file
https://fxdreema.com/forum/topic/5164/example-save-variables-into-file-and-read-them-back-advanced -
RE: Can you fix the pips in Buyposted in Bug Reports
buy is opened at ask price, sell at bid price, chart is created from bid price, and ask price is offseted from bid price by spread value ... (try set spread = 0)
-
RE: how to create indicator Divergence Stochastic Alertposted in Questions & Answers
it is somewhere created online ... and if not try this my mode ... I totally forget how it is working and why I created it - I never used it ... but diveregence should working ..

https://ufile.io/6lcyy (link is valid only 30 days) ... -
RE: Can't rearange constants or variables for a whileposted in Bug Reports
my is the same .. 62.0.3202.94 ... and I can do it ... so problem is maybe somewhere on your side ... try clear cache, reinstall .... xyz things 
-
RE: how to draw line in the futureposted in Questions & Answers
in block Draw Line use Shift Forward option and here you can give how much time it should shift forward from Candle ID (0) ... when you use 1 hour chart, use number 8 when you need shift it 8 candles forward (1 hour == 1 candle in 1H chart) ...


