@l-andorrà thanks
Posts made by dadilula
-
RE: doubts about the martingaleposted in Questions & Answers
@l-andorrà if I enter: "For each trade block" at every 2nd order in martingale that creates 200 orders in loopit. does not work.
-
RE: doubts about the martingaleposted in Questions & Answers
@l-andorrà no I'll try now, I've never done it
-
simple function to locate the drawdown % MAXposted in Tutorials by Users
hi everyone, I searched online and on the forum how to create 2 lines of code to create a DD% filter, in the end, almost discouraged, I decided to create an EA with all the essentials inside to be able to create this filter, I leave you the link to the project
https://fxdreema.com/shared/RPtcSNQ0e
explanation:
the code is really nonsense, just create a conditional block in which the initial balance sheet and equity are examined by executing this formula:
constant DD = 95
if equity <= balance [(*DD %) it must be entered in the appropriate "adjust" space]example: €93 <= €100 (*95%)
= €93 <= 95
= TRUE
= close tradewhat happens is that every 5% of DD the EA will close the orders, this function can be used anywhere, even to create a daily DD, in which other blocks are used to stop the EA
Let me know if I was helpful to you and what you think

-
RE: how to import an indicator into an EA?posted in Tutorials by Users
@jstap could you explain to me how to do it?
-
how to import an indicator into an EA?posted in Tutorials by Users
hi, I'm trying to import 2 of my indicators into the EA I created, I just don't know how to do it, currently I'm forced to have both the 2 indicators inside the ...\MQL4\Indicators folder
that the EA inside the ...\MQL4\Experts folder
This is annoying, what can I do?In summary:
When loading the EA I want the indicators to already be present within the EA code and not to have to install the EA + 2 indicators on MT4.thank you all
-
RE: doubts about the martingaleposted in Questions & Answers
nothing, I've tried them all, it can't create SINGLE TP for all orders... let me know
-
RE: doubts about the martingaleposted in Questions & Answers
If I changed this entry from "current market price" to "open price", could I solve the problem? what are you saying?

-
doubts about the martingaleposted in Questions & Answers
Hi everyone, I created this structure to teach the EA that every time it executes the matingala at -5 pips it must also create the new TP, the constants are the following:
PIP = -5 (pips)
PERCENTAGE = 200 (it is the multiplier)
while the variable is TP and I created this formula: ((PIP)*(-1))/1• what does it do?
every -5 pips executes a new order by taking the lot and multiplying it by "PERCENTAGE" (example 0.01 = 1st order, 0.02 = 2nd order, etc...), then moves the TP using the formula I wrote above, then : (-5)*(-1)/1 = 5• what's the problem?
so the problem is that when the new TP is moved (for all orders) I graphically notice that I don't see 1 single red line (the TP) but sometimes I see 2-3 red lines, this means that the TP is not aligned for all the orders orders, it seems as if there is a slippage of a few pips, for example;
order 1 = TP: 1.0123
order 2 = TP: 1.0123
order 3 = TP: 1.0124
etc...• Solution?!?
I'm here to ask you if you can give me some solutions.Thanks in advance

-
RE: block problem: Set "Current Market" for next blocksposted in Questions & Answers
I discovered that on mt4 I cannot perform the backtest on multiple pairs, so that block is useless and should be fixed... I wanted to do 1 backtest on multiple pairs, having only 1 chart open, moving in such a way as to make the EA on multiple pairs but being connected to only 1 chart.
-
block problem: Set "Current Market" for next blocksposted in Questions & Answers
after inserting the block: set "Current Market" for next blocks, the EA gives me this error... WHY???


-
help draw shape & draw text !!!!posted in General Discussions
i want draw text into shape (as in the picture below)... how do it?
I also want the text and shape to move togetherhttps://fxdreema.com/shared/JHly5AJ0c

-
help draw shape & draw text !!!!posted in Questions & Answers
i want draw text into shape (as in the picture below)... how do it?
I also want the text and shape to move togetherhttps://fxdreema.com/shared/JHly5AJ0c

-
RE: fxdreema does not load buffer or input valuesposted in Questions & Answers
@jstap how do i insert them? attached is the indicator file
-
RE: Lead me How-To create Custom Enumerationposted in Questions & Answers
enum order_procedures
{
FIX, // option 1
EQUITY, // option 2
MARTINGALE // option 3
};input order_procedures InpDrawProcedures = FIX; // Drawing procedures
-
RE: PIPS FILTER AND PIPS DISTANCE NOT WORKINGposted in Questions & Answers
the TP does not fit into the condition, but into BUY NOW and SELL NOW
