update compiler for version >=1080 ...
Posts made by miro1360
-
RE: Tester: Cannot load Experts/ XXXposted in Questions & Answers
-
RE: problem with custom indicatorsposted in Questions & Answers
No idea where is your problem, but instead of this indicator you can use 2 moving averages (this indicator is copy of those two MA), one aplied to High price and the second for Low price ... than use condition like this:

for sell the opposite
-
RE: When Price crosses RSIposted in Questions & Answers
block Once per trades is not well in this situation, use something other ...
-
RE: problem with custom indicatorsposted in Questions & Answers
and are you working in MQL5 project while importing this indicator? because for me it is working when I try import it:

next work only with buffer 0, like this for buy:

and for sell set condition < ...
-
RE: If long trade is active and a short pending get taken, close the long tradeposted in Questions & Answers
for this situation is usefull on Trade section, add few blocks into this section:

when Pending order is trigered, it means new Trade is created, so filter this situation with block and after that set what must happen:

and opposite for sells
-
RE: current candle is having a lower low than the previous candleposted in Questions & Answers
try condition like this:

-
RE: Distanceposted in Questions & Answers

or the same can be used in condition block, or formula, etc ... -
RE: Percentual Entryposted in Questions & Answers
but what is your formula for calculation this difference? if is that standard formula as:
((|vYesterday-vToday|)/((vYesterday+vToday)/2))*100 = [%]than something like this:
https://fxdreema.com/shared/r5J0gv3je

-
RE: Check Lot Size?posted in Questions & Answers
yes, pink blocks are for some kind of check and control in trades

-
RE: Easier way to exclude certain dates?posted in Questions & Answers
I have not found this option yet ... but maybe usind custom code it can be done, if you can do something in mql language ...
-
RE: Percentual Entryposted in Questions & Answers
based on what is this % calculation done? compare to what is this 20%?
-
RE: Check Lot Size?posted in Questions & Answers
block For each Trade + block Condition where you set parameter (in loop) trade order and here is lot size
-
RE: Simple RSI condition problemposted in Questions & Answers
how your project looks like? I am asking, because it can be problem somewhere in other place.
Little checkbox allows input parameter to be visible in settings window of EA (when you are inserting EA into chart, settings window appear and these parameters you can set here). Better as checkbox is learn to use this:
https://fxdreema.com/help/working-with/constants-and-variables (note, when you use constants as inputs, checkbox is not selected) ... -
RE: Record Trade Count to a Variableposted in Questions & Answers
perfect, this is concept of fxdreema, when right used, it save you a lot of time and money

-
RE: Tester: Cannot load Experts/ XXXposted in Questions & Answers
try ask here if metaquotes something changed in their new updates for mac:
https://www.mql5.com/en/contact -
RE: Video Tutorial - Signals Dashboard EA [advanced] - looping Objects, arraysposted in Tutorials by Users
I just did for you this one example (sorting pairs and its coresponding RSI values, from max to min), where is array sorting working (it should work, I have not tested it because market is closed while posting this, but you can test it when it starts again

https://fxdreema.com/shared/sfv0yDtF
note, that here needs be done some temp values which are holding temporaly other values for further use, and some functions to handle with these values and arrays:

see, now it is even more custom code ... but question was if something like this is possible did in fxdreema and it is possible, but need some basics of mql programing ...


