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: communicate between 2 mt4 on same computer

      @zackry Well in that case you need some real time communication with push service I think. For that you'd need some Windows dll at least or an external broker program.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Trade manager button ea problem

      @fabien-s First of all check the labels as they seem to be inconsistent. On init you use sell and buy for instance, but later on Sell and Buy. Don't know if that matters, but I think so. Further I'd avoid blankspace in the labels. Mayne it doesn't matter, but better use underscore or camelCase instead.

      Once the buttons work again in general, you maybe need to check if your TP variable is valid. For instance if price is above 200 ema and you make a buy order, the TP value would be below open proce and that's not valid.

      Let me know when you have a newer version to check further.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: fxdreema glitchy

      @gunji80 That 0 line criss was just an example how the blocks look like.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Simple EA Help

      @jgwap203 There are ways to have a sine instance managing a defined set of symbols in fxdreema. However it complicates things a bit as you have to cycle through the symbols.
      I'd say first step is to make it work on current pair and after that think about the Multi-Symbol approach.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Multiple Condition Trailing Stops

      @chemdog It looks a bit overcomplicated. I see 2 issues:

      1. How do you know how many times you already stepped
      2. How do you know how much is 200% once you set to breakeven?

      For 1) you may come around if so is near or equal to open price.
      For 2) It's a bit complicated. Is it possible to re-calculate your initial SL? Maybe it's some kind of ATR multiplier or other indicator value?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Read file data

      @ekifox looks like it's pretty much the similar in mql5. Have a look here

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Simple EA Help

      @jgwap203 It should only close the trades on the symbol the EA is attached to - unless you specify different in the blocks.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Four Conditions Met Before Trigger Order

      @edward-brazil In that case not all conditions are met. Maybe you can share a chart example where we can see how it should behave.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Simple EA Help

      @jgwap203 Maybe something like this?

      0_1569291362945_1a3bac2f-fa16-44d1-bd45-633119b8d7a3-image.png

      If a Buy trade is created (eg. a Buy order is triggered) you close open sell orders? You do this on "on Trade" tab

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Trade manager button ea problem

      @Fabien-S Here we go ..

      Block 702

      0_1569287968087_b7b5e342-6413-4d43-94e4-9535e9b3390a-image.png

      You put Sell ther which is interprted as an integer variable. However it's not defined. Probably that field should be empty.

      Aditionally it looks like you missed one connection between Blocks 51 and 54, but that was not the issue why the EA unloaded.

      0_1569288056905_8cdea247-b397-4fa1-bd90-061a812399d2-image.png

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Trade manager button ea problem

      @Fabien-S If you try to compile your project in Meta Editor you'll see the message:
      'Sell' - undeclared identifier Trade Manager.mq4 3585 22

      If I take a look at the line 3585 it's like this:
      SkipObjects = (int)Sell;

      So you use Sell that is not declared somewhere. I will try to find where it comes from.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: EXPORTAR VENTANA DE DATOS

      @cesardefez There is a write to file block that you may investigate. I haven't used it yet, but sounds to point in the right way.
      0_1569279723857_e0661bc9-b0cd-4c32-bd6e-028cbd6a3b0e-image.png

      posted in General Discussions
      T
      trader.philipps
    • RE: fxdreema glitchy

      @gunji80 Congratulations, you make it work. Now you can tweak it in order to get profitable.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: communicate between 2 mt4 on same computer

      @l-andorrà Yes, you're right. And additionally you have to care anout keeping the trades in sync and maybe change lot size to keep same risk reard ration and so on. This field is very complex and has nothing to do with clicking some blocks together.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: about 'Check type (last loser) (last winner)' stopping trade

      @l-andorrà Eagle eyes again .. respect!

      posted in Bug Reports
      T
      trader.philipps
    • RE: Read file data

      @ekifox You may achieve this by cusomt MQL code. Here is the API documentation. How many values are in you CSV file?
      Another thing you might keep in mind is how to get to know that the file was updated.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Multiple Losing Trades in a row? How to automatically not enter?

      @angladephilip Should it stop entirely or just skip n minutes?

      However, there is a block for checking consesecutive losses you might want to have a look at.

      0_1569291944972_f32e517c-fa39-4ae0-90c6-703807281bc2-image.png

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Need help with a custom indicator (HMA hulls moving average)

      @scottpapetti I clicked the stuff together how I would start with it.
      0_1569278250322_HMA_Sample.mq4

      Maybe that helps you for starting.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Need help with a custom indicator (HMA hulls moving average)

      The indicator has 2 buffers. The sequenceit shows values in price is:

      1. long (green) -> price display
      2. short (red) -> price display
      3. long (green) -> price display AND short (red) -> price display // In this case there is a change in direction.

      I would use one of the block "Indicator is visible" or Indicator is invisible" if you just want to check the HMA trend.

      In case you want to catch the colour change, you may try "Indicator appear" or "indicator disappear", but I haven't use those blocks, yet.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: fxdreema glitchy

      @gunji80 hehe .. I was too blind the first time I took a look

      0_1569258939740_6c58f2b6-3a76-4343-a290-fe1a55f2f5e2-image.png

      MACD is an oscilator in a seperate sub-window. It's value has nothing to do with the current price and it makes no sense to compare ir with the closing price of the current candle.

      What event do you want it to be for the condition? MACD Signal line crosses 0 line of MACD maybe? That would look like this

      0_1569259270943_8eb6fc02-1f13-4eda-91c7-37fc77ef7210-image.png

      posted in Questions & Answers
      T
      trader.philipps
    • 1
    • 2
    • 41
    • 42
    • 43
    • 44
    • 45
    • 50
    • 51
    • 43 / 51