fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. dadilula
    3. Posts
    • Profile
    • Following 0
    • Followers 0
    • Topics 8
    • Posts 23
    • Best 1
    • Controversial 0
    • Groups 0

    Posts made by dadilula

    • RE: doubts about the martingale

      @l-andorrà thanks

      posted in Questions & Answers
      dadilula
      dadilula
    • RE: doubts about the martingale

      @l-andorrà if I enter: "For each trade block" at every 2nd order in martingale that creates 200 orders in loopit. does not work.

      posted in Questions & Answers
      dadilula
      dadilula
    • RE: doubts about the martingale

      @l-andorrà no I'll try now, I've never done it

      posted in Questions & Answers
      dadilula
      dadilula
    • simple function to locate the drawdown % MAX

      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 trade

      what 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 😁

      posted in Tutorials by Users
      dadilula
      dadilula
    • RE: how to import an indicator into an EA?

      @jstap could you explain to me how to do it?

      posted in Tutorials by Users
      dadilula
      dadilula
    • how to import an indicator into an EA?

      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

      posted in Tutorials by Users
      dadilula
      dadilula
    • RE: doubts about the martingale

      nothing, I've tried them all, it can't create SINGLE TP for all orders... let me know

      posted in Questions & Answers
      dadilula
      dadilula
    • RE: doubts about the martingale

      If I changed this entry from "current market price" to "open price", could I solve the problem? what are you saying?

      3730471a-ce5b-46cf-95fa-0f3d67f275db-image.png

      posted in Questions & Answers
      dadilula
      dadilula
    • doubts about the martingale

      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

      f97d7182-ab3d-44da-ae65-2d471f2caa83-image.png

      posted in Questions & Answers
      dadilula
      dadilula
    • RE: block problem: Set "Current Market" for next blocks

      @l-andorrà @AMBROGIO perfect thank you all

      posted in Questions & Answers
      dadilula
      dadilula
    • RE: block problem: Set "Current Market" for next blocks

      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.

      posted in Questions & Answers
      dadilula
      dadilula
    • block problem: Set "Current Market" for next blocks

      after inserting the block: set "Current Market" for next blocks, the EA gives me this error... WHY???

      2cbaa425-2ffc-4f5e-9948-2e94824f8fa0-image.png
      58624511-61d7-42ce-953e-fddab0095d65-image.png

      posted in Questions & Answers
      dadilula
      dadilula
    • RE: help draw shape & draw text !!!!

      Come on!

      posted in Questions & Answers
      dadilula
      dadilula
    • RE: help draw shape & draw text !!!!

      heyyy !!! help

      posted in Questions & Answers
      dadilula
      dadilula
    • RE: help draw shape & draw text !!!!

      nobody can help me???

      posted in Questions & Answers
      dadilula
      dadilula
    • help draw shape & draw text !!!!

      i want draw text into shape (as in the picture below)... how do it?
      I also want the text and shape to move together

      https://fxdreema.com/shared/JHly5AJ0c

      0_1646145809845_3ce860b2-9a72-4319-9864-8bc4370b8d07-image.png

      posted in General Discussions
      dadilula
      dadilula
    • help draw shape & draw text !!!!

      i want draw text into shape (as in the picture below)... how do it?
      I also want the text and shape to move together

      https://fxdreema.com/shared/JHly5AJ0c

      0_1646145809845_3ce860b2-9a72-4319-9864-8bc4370b8d07-image.png

      posted in Questions & Answers
      dadilula
      dadilula
    • RE: fxdreema does not load buffer or input values

      @jstap how do i insert them? attached is the indicator file

      posted in Questions & Answers
      dadilula
      dadilula
    • RE: Lead me How-To create Custom Enumeration

      enum order_procedures
      {
      FIX, // option 1
      EQUITY, // option 2
      MARTINGALE // option 3
      };

      input order_procedures InpDrawProcedures = FIX; // Drawing procedures

      posted in Questions & Answers
      dadilula
      dadilula
    • RE: PIPS FILTER AND PIPS DISTANCE NOT WORKING

      the TP does not fit into the condition, but into BUY NOW and SELL NOW

      0_1634640452152_Cattura.PNG

      posted in Questions & Answers
      dadilula
      dadilula
    • 1
    • 2
    • 1 / 2