probably was not profitable 
Posts made by miro1360
-
RE: Multiple Timeframeposted in Questions & Answers
this doesn't matter, you don't need to have opened other TFs
-
RE: UPDATE time, write here if you have problems!posted in Questions & Answers
download older offline version of fxdreema and create project in that offline version .... it is older, so here are not new blocks and updates ... but few people still use it ...
https://fxdreema.com/index/desktop/download/fxdreema_install_build_100.exebut I need note it again, dont trust metatrader tester results when you are using candle ID 0, ticks here are modeled with some math and this can be different for "strict" and no strict mode and even different when oop in code is used ... you can trust only forward demo tests (trading in demo) or than live results
... tester use mostly in visual mode and when are you sure what are you doing with candle ID 0, than run it forward .... -
RE: Is it possible to have a dropdown list for inputs?posted in Questions & Answers
for this I dont know simple solution without manual adding enum things into code (if drop-down is must) ...
but if you dont need dropdown and simple text is enough, than this:create inputs and add them into each management mode:


when you are complete with each mode, add management as input:

and than these text values are names of modes which you add into expert properties manually in this order:
fixed
equity
balance
freemargin
block-equity
block-balance
block-freemargin
equityRisk
balanceRisk
freemarginRisk
fixedRisk
fixedRisk
1326
dalembert
fibonacci
labouchere
martingale
sequenceand you change it with typing as this in EA:

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
in case you need it as dropdown list, this is manual editing/adding in code:
in fxdreema this:

this:

this in on Init section:

generate only mq4 (not ex4)
with metaeditor add this enum structure into top of code above inputs:

click compile button in metaeditor and hopefully it compile without errors, this is result:

problem with this manual editing in metatrader code is, that each time you generate mq4 code from fxdreema, you need do all manual changes in code with metaeditor again and again
- and this is why it is not very elegant -
RE: Is it possible to have a dropdown list for inputs?posted in Questions & Answers
its like cookery book now without index

just cook everything, one after another and you become culinary art
-
RE: Total profit of current orders in Pipposted in Questions & Answers
or as alternative learn to use For each trade pink blocks ... (again somewhere in my replies are full examples for concrete situations) ...
-
RE: Is it possible to have a dropdown list for inputs?posted in Questions & Answers
it were to easy for you if I made search in my replies instead of your work?

try this:
input ENUM_TIMEFRAMES timeframe = PERIOD_CURRENT -
RE: Is it possible to have a dropdown list for inputs?posted in Questions & Answers
read my replies, I replied this somewhere few times

-
RE: Error compiling scriptposted in Bug Reports
just the same as he posted, this:
https://fxdreema.com/shared/PiLWGRwob -
RE: Terminate EA when Equity is above a certain numberposted in Questions & Answers
it is different in more robust logic, when equity reach point, variable terminatingActive become "true" and at this point Close trades block is repeating itself up to situation where no trade exist and EA is terminated only in situation when no trade exist ...
I dont know another reason why it happened to you, only broker reasons/issues

-
RE: Terminate EA when Equity is above a certain numberposted in Questions & Answers
your equity has not reached it? are you sure about?
because maybe it has reached, trade closing was rejected by broker
these broker tricks happened often to me ... be little smarter against these tricks, take inspiration from this mine: -
RE: Draw Arrow for past Signalposted in Questions & Answers
using loop ...
you can learn from my replies, study them one after another and it can answer you a lot of questions
...https://fxdreema.com/forum/topic/4774/text-object-on-the-top-of-each-bar/2
-
RE: How to use ZigZag [advanced]posted in Tutorials by Users
modification like this is something as create new indicator from scratch,
because it needs a lot of things == it cost a lot of time and I have not this time ...
... -
RE: How to use ZigZag [advanced]posted in Tutorials by Users
it draw arrows not exactly on zigzag, it draws them based on highest/lowest thing ...

you need hide arrows? just change in settings color to None (in EA clrNone) ...

-
RE: How to use ZigZag [advanced]posted in Tutorials by Users
yes you can remove it
... dont worry to do things and test them 
-
RE: You can't download your EA Like me? do you know there is a desktop software of FXdreema?posted in Questions & Answers
download is fixed and you can send aplication into avast test center and they check it if there is virus or is not

-
RE: How to use ZigZag [advanced]posted in Tutorials by Users
glad to hear that it is working for you
... not connected block (alone) is not added into EA, I am using this Pass block only for adding scroll bars into fxdreema working area
(it have nothing to do with EA functionality)

