fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. trader.philipps
    3. Posts
    T
    • Profile
    • Following 3
    • Followers 38
    • Topics 20
    • Posts 1001
    • Best 91
    • Controversial 2
    • Groups 0

    Posts made by trader.philipps

    • RE: Close price - EMA

      @rhang Like this

      0_1579189017829_931284cc-5804-42f2-8d24-0f511930fbd9-image.png

      Positive result: Price above MA
      Negative result: Price below MA

      posted in Questions & Answers
      T
      trader.philipps
    • RE: How to add a stop of ea trading after an amount of lot's are done?

      @pavansantani Doy you mean per chart (EA instance) or all charts in case you run it on more than 1 chart?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: How to open a project for making an Indicator?

      @alwakas987 fxdreema is not designed to create indicators.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Help on Trailing stop block appreciated (SOLVED)

      @l-andorrà So your trailing step is wrong?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Help on Trailing stop block appreciated (SOLVED)

      @l-andorrà Let me know if it works.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Open a position when indicator gives alert

      @rusen I am absolutely no expert in managing chart objects! What I found by quickly scanning the options I'd start with this condition block (don't know if that is doing the right thing) in your object loop.

      0_1579104099291_a9479491-5662-47a2-a2ba-e8a0a57eb380-image.png

      There is als a Time doption where you can choose from 3 times. Maybe that could work as well.

      0_1579104275044_7120503d-ee13-4a5a-a9d6-6f62cc91bbdf-image.png

      For a triangle object there are 3 times. So maybe one of those might do the trick.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Help on Trailing stop block appreciated (SOLVED)

      @l-andorrà Don't know if I get the issue right, but I'd start like that

      0_1579102445779_5c716cf9-c332-485d-8d30-224f7745f8b7-image.png

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Open a position when indicator gives alert

      @rusen Well, that seems to be a comercial indicator and my account is not in the list to use it. In general it will be hard to get reliable results with an harmonic indicator as it tends to repaint if price moves.

      However, in this case you might check the objects it creates on the chart. Find them by pressing CTRL-B. But much more I can't help here.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Open a position when indicator gives alert

      @rusen If you may upload your indicator I might have a look how to catch the alert event.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Expire order in n bars *** SOLVED ***

      @roar It depends on specifying yes or no here..

      0_1579098606232_b34ade5f-fbf3-4325-a781-c58354bfc877-image.png

      But to be honest I don't know what the broker does with it as the expiration is send with the ordersend of the order.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Expire order in n bars *** SOLVED ***

      @trader-philipps Okay, I shouldn't answer my questions by myself, but writing the issue down gave me the hint. For everyone who is interested, I solved the issue with the period() function that gives back an integer value in minutes for the current chart timeframe. In fxdreema it looks like that now.

      0_1579098018045_c79d2931-21e1-40a2-9da8-3ed5f5e92b19-image.png

      ciOrderExpirationBars is an integer constant were the user can set the number of bars in the EA's parameters.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Open a position when indicator gives alert

      @rusen Check data window in terminal on a chart were the indicator is placed on. To switch on/off data window use CTRL-D keys.

      0_1579097777232_b4995c30-c836-4004-9314-f678ce81eede-image.png

      It should look like this.

      Now try to find your indicator. If it draws for example an arrow on the chart, then hover over that arrow and see which buffer value changes (usually one gets a number that hadn't one before or after).

      posted in Questions & Answers
      T
      trader.philipps
    • Expire order in n bars *** SOLVED ***

      Hi, I currently try to find an easy way to expire an order (best on the BUY or SELL block defined) after n bars (eg. after 50 bars) regardless of if it is in profit or loss.
      Has someone a quick solution? By custom MQL code I might calculate the current chart timeframe to minutes and multiply by my bar expiry value.

      For example for an M15 chart I might calculate 5015 minutes. For an H1 chart it would be 5060 minutes and so on.

      Is there an easier way I don't see right now?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: How can I do this Formula ?

      @delibalta Maybe not the best approach but it might give you an idea.

      0_1579089381766_ff9ba832-9119-4417-9600-a42011661d52-image.png

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Shrink stop / minimum TP issue

      @robertk If that block doesn't work for you, why don't you use the modify stops block instead?

      posted in Bug Reports
      T
      trader.philipps
    • RE: how to get only BUY PENDING ORDER above MA and vice versa

      @trader-philipps ... and finally I found it :)) So if you work on other thand daily chart specify everywhere in the conditions block daily! That will make that logic work even on lower tf.

      But the reason that you sell buy and sell pending orders is different!

      0_1579083973115_67f72e50-b47c-485d-9224-3a477c9eaf3c-image.png

      Switch of OCO option (one cancels other) as this places long and sell order and automatically deletes the other one if a pending order gets triggerd.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: how to get only BUY PENDING ORDER above MA and vice versa

      @charlie66 Are you using the EA on a daily chart? If not change the once per bar to once per day block!

      Also change the No trade block for a Notrade / order block!

      posted in Questions & Answers
      T
      trader.philipps
    • RE: How can I do this Formula ?

      @delibalta I think there is no easy answer. Will there be only 2 trades or could there be more? How to identify which of those you need to substract?
      Usually you a mql developer would create an array of all open orders and then use the array index to find the orders.
      With fxdreema that would require custom mql code. I f you want to do so with fxdreema blocks only, you need to specify how those trades could be identified.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: cant find MY INDICATORS

      @twezo So you don't know where to find the data folder of your MT4/MT5 instance? In the terminal go to File -> Open Data Folder

      0_1579082050796_3d7f4c16-cc3b-4119-8084-cb90172c01f8-image.png

      When the file browser opens choose MQL folder and then indicators. Mark the path, copy it and use it in fxdreema upload indicator dialog.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: How do I group parallel conditions. This or that or the other ?

      @jzfusion Could you share yoir project? Entry and exit of trades have nothing to do with each other unless you specify the opposite signal for instance of an entry condition as an exit condition.

      Show us your project and the concrete issue you're facing and we can help.

      posted in Questions & Answers
      T
      trader.philipps
    • 1
    • 2
    • 16
    • 17
    • 18
    • 19
    • 20
    • 50
    • 51
    • 18 / 51