Posts made by miro1360
-
RE: Can fxdreema do anything with candle 0?posted in Questions & Answers
you can working with candle 0 without problems (but expect repainting of this candle - this candle repaints not because of fxdreema, but because of way how is this candle created) ...
-
RE: if MA is touching candle + if X amount of candles not touched MA lineposted in Questions & Answers
with fxdreema you can do it .... did you tried? ...
-
RE: Apply EA to all open chartsposted in Questions & Answers
maybe with custom code ... but for this you need to know basics from mql programming, it is easy to learn ..
https://docs.mql4.com/chart_operations -
RE: Question about CHECK PROFIT!posted in Questions & Answers
you can try do this in "on Trade" section --- when you click into this "on Trade" window/section, new blocks appears to working when trade action happens (like trade closed on tp/sl, etc) ... and try test them

-
RE: What am I doing wrong?posted in Questions & Answers
I dont think
... disable trailing and give TP to 150 and try it - it shows you potential from your EA ... trailing is only for potentially increased profits from big trends - and they are only on GBPJPY and similair pairs but dont expect holly grails from trailing ... trailing on EURUSD is worse than hard TP ... -
RE: What am I doing wrong?posted in Questions & Answers
% of win profit trades must not be win at money
because you are at start risking more as you get ... your hard sl is 150, but trailing stop start at 125 ... that means your trade must go to 126 profit and it moves it to +1 pip into profit and continues it until trailed SL (or TP) is not reached ... result is a lot of trades closed in bad R:R ... -
RE: Question about CHECK PROFIT!posted in Questions & Answers
blocks are runing one after another in one tick, from top block/blocks ... that means something like this:
here are Top blocks ...
https://fxdreema.com/forum/uploads/files/1484164252027-upload-21b5ef27-0a10-4172-8bb2-2693e263b502.pngthat means your top block is nr1 No trade -- it is only one top block ... do you know what it means? .... some of your blocks are not running ... or is it ok?
-
RE: Is there any way to change the group of a trade that has already been created?posted in Questions & Answers
I have not found this in fxdreema, if you can something in custom code, it is possible with mql file functions and save informations into txt/csv file while trade is created, closed, modified, etc ... but working with files is not very easy, you need be very strict to avoid errors ...
https://docs.mql4.com/files -
RE: New option to my EA. Help required.posted in Questions & Answers
try it in tester, it is best what you can do for answer to your question
....
and block Trade closed appear when you click into "on Trade" section -
RE: Betting: Custom Sequenceposted in Questions & Answers
I dont know direct way using blocks ... but you can use custom code block for calculating ...
https://fxdreema.com/shared/Z3FcRhufcyou can change math in code for your purposes ...
import it into your project to view which are constants and which are variables ...



or simplier:

-
RE: SL = X pips + spread?posted in Questions & Answers
try this:
... that SymbolInfoDouble() returns value in points, that means spread 2 pips is returned as 20points, and it is why I divide it with 10 in calculation ... just try it

-
RE: EA to Place orders at specific priceposted in Questions & Answers
probably it is not easy to made
but possibly ... just depends on your strategy, what you will do and what you tried? -
RE: Betting: Custom Sequenceposted in Questions & Answers
I have not used this sequence yet, but as I understood it (probably) how it works, it is like so:
when you give Base volume 0.1
and Sequence on loss 3,2,3
results are trades with lots and sequence multiplier:
1.trade 0.1 closed with SL (first is with base volume)
2.trade 0.1x3 closed with SL
3.trade 0.1x2 closed with SL
4.trade 0.1x6 closed with SL
5.trade 0.1 closed with SL
6.trade 0.1x3 closed with TP
7.trade 0.1 closed with TP (again with base volume)
8.trade 0.1 closed with SL
9.trade 0.1 closed with SL
10.trade 0.1x3 closed with SL
11.trade 0.1x2 closed with SL
12.trade 0.1x6 closed with TP
...

another example:
1.trade 0.1 closed with SL (first is with base volume)
2.trade 0.1x1 closed with SL
3.trade 0.1x2 closed with SL
4.trade 0.1x3 closed with SL
5.trade 0.1 closed with SL
6.trade 0.1x1 closed with TP
7.trade 0.1x3 closed with TP
8.trade 0.1 closed with SL
9.trade 0.1 closed with SL
10.trade 0.1x1 closed with SL
11.trade 0.1x2 closed with SL
12.trade 0.1x3 closed with TP

maybe it is wrong
just test it for yourself ... sequence is a,b,c,d,... where a,b,c,d,... are multipliers and a ist second trade, b is third, etc (after base trade - base is first) ... just test it ...SL I mean as loss and TP as profit ... probably it can be also other close type - just depends on profit or loss ...


