https://fxdreema.com/help/working-with/custom-indicators
https://fxdreema.com/forum/topic/4208/tutorial-06-my-indicators-in-fxdreema
in both topic is info how to add ex file into my indicators 
Posts made by miro1360
-
RE: I rented a indicator to do a only robô an ex5 file I can not put it in the fxdreema. How I do??posted in Questions & Answers
-
RE: Applying an indicator to Previous / First Indicator's Data in fxDreemaposted in Questions & Answers
problem si, that MQL code is not supporting this option directly - that is why it is not in fxdreema drop down menu ... if you can little code, you can do this with custom indicator using iMAonArray function in mql ... if you cant code, search for custom indicator with this mode ... if you need it for RSI, search for TDI (traders direction index) indicator ...
-
RE: Tutorial 05 - EMA cross, part 5 - Buttons behavior [beginners]posted in Tutorials by Users
Hi, it is fast the same, only more strict:
https://fxdreema.com/shared/f8D0nyZKc
ObjectSetInteger(0,LoadedObjectName(),OBJPROP_STATE,0);
ObjectSetInteger(0,LoadedObjectName(),OBJPROP_BGCOLOR,clrGray);
ObjectSetInteger(0,LoadedObjectName(),OBJPROP_COLOR,clrLightSkyBlue); -
RE: No Trade Nearblyposted in Questions & Answers
block No Trade Nearby use for "both side",
here is more about in details, how it is working:
https://fxdreema.com/forum/topic/4007/No-trade-nearby-case-1-and-case-2-something-missing/7 -
RE: Conditional within loopposted in Questions & Answers
ma cross happens - it happens between two candles, but on next candle there is no cross, only MA5>MA20 ... on next candle will be your condition (block 307) false ...
instead of AND block 379 you can connect block 307 directly
... but result from your blocks connection is repeatly adding to volume when conditions are true (tick after tick) ... for this, after adding to volume (after whole loop) you need some flag to deactive cross condition and wait for next one -
RE: EA doesn't open in MT4posted in Questions & Answers
your issue is not issue itself ... it is how it works ... it was explained many times, just read about difference here:
https://book.mql4.com/metaeditor/files
https://www.mql5.com/en/forum/113982
in few words:
ex files are executable files, that means ex file is not source code but compiled program and this file can not be imported into fxdreema, but these files can be placed into chart as expert advisors (or indicators if it is indicator)
mq files are source files and they can be imported into fxdreema if they were created with fxdreema (from other sources they can not be imported as project), but mq file is not executable program and can not be placed into chart .... when you are updating new EA update both files ... mq and ex ... or you can update only mq file but after this you need run metaeditor, open this new mq file and click on Compile button (it compile new ex file) -
RE: Trading only on specific daysposted in Questions & Answers
block Weekday filter have you tried?
-
RE: How to make distance 500 pips from current priceposted in General Discussions
talk with admin about your download issue
-
RE: select certain orderposted in Questions & Answers
this is also working ok for your situation, have a success with that

-
RE: Question regarding the "adjust" fieldposted in Questions & Answers
you dont need specify symbol, leave symbol free, it is loaded automatically from chart info (from chart where EA is located)
-
RE: how i can control in the spread ?posted in Questions & Answers
each your EA must have this filter in blocks, that means, create our EA with all functionality + give spread filter into this EA ...
-
RE: select certain orderposted in Questions & Answers
here: https://fxdreema.com/shared/RGv1NaAwe
but you need vitalize your effort, it is important for big projects, more effort in logical problems gives you faster thinking in other logical problems ...
effort can be 101 attempts, where 100x are big fails and 1x is small success
and accumulate this success! -
RE: how i can control in the spread ?posted in Questions & Answers
note: manually opened trades have magic 0
next is explained here:
https://www.youtube.com/watch?v=h38Wd7NH4_4 -
RE: select certain orderposted in Questions & Answers
blocks:
Check trades count + For each trade + pips away from open price + once per trade + modify stops or extend stops
maybe I something left out, when you try it you will see result, if is not working, try other ways, there are always ways ... -
RE: select certain orderposted in Questions & Answers
for checking trades count you can use block Check trades count
-
RE: Pips away from open priceposted in Questions & Answers
for me, this block is working well when is connected with block "For each trade" ... block For each trade is working for pre-selected trade. When is trade selected, you can apply on this trade blocks with light-pink color (like your pips away from open price) ... but without preselecting trade using block For each trade - who know which trade is selected ...

-
RE: how i can control in the spread ?posted in Questions & Answers
you can give more EAs on the same pair (each EA for own chart), you give different MagicNumber while inserting EA into chart and each EA will control own trades
-
RE: select certain orderposted in Questions & Answers
try this:

but for me are working both examplex that I provided to you ... maybe is something else wrong in your project ... my testing project where open price from second-last opened trade is printed on the chart:
https://fxdreema.com/shared/7HurHl0Q