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: EXPORTAR VENTANA DE DATOS

      @bigape Good to know and thanks for the feedback!

      posted in General Discussions
      T
      trader.philipps
    • RE: Multiple Condition Trailing Stops

      @chemdog So how do you specifiy your initial SL? I use similar calculation in one of my projects.

      0_1569429773073_2c2a63e0-2a3c-4823-8e0e-32e755a6eb53-image.png

      This custom MQL code wil store the bar when the trade was opened (vi_order_bar ist my integer variable I specified in fxdreema).

      Once you know the candle ID you may be able to re-calculate the SL valid for that candle.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: MT4 testing same EA no matter what MQ4 I choose

      @sirboyce Are you sure that if you compile in Meta Editor there are no errors reported? May you send a project link that we can have a look?

      posted in Bug Reports
      T
      trader.philipps
    • RE: Trying (and failing) to create a simple EA...appealing to all FXDreema gurus!

      @sirboyce Switch back to candle ID 1, please! It will help to understand what's printed on the chart and what EA did better.
      However, if you don't want a new trade each bar that the conditions are met, you should put a no trade block in front. It's that what you are complaining about?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Add value of Atr to Moving Averagd

      @aramsamsam69 Here are the blocks for the upper and lower limit. If you need help for the rest just let me know.
      0_1569428783777_63c4ccf9-d8c3-4cd9-8383-f5f190645898-image.png

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

      @chemdog Cool! If profit in money is sufficient for you. The other way would be to re-calculate the initial SL.

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

      @edward-brazil sorry to tell, but you're confusing me. Refrain from your visual analysis and try to think how an algorithm may look like.
      If you say there has to be a ma crossing, you need to define a validation and an invalidation criteria, because all ma sooner or later cross each other sometimes.
      Or consider the crossing is not the important condition, but price has to be or close above or below a certain ma.
      I checked some of the conditions on lower timeframe and there in some cases your buy conditions were fulfilled, when market already had changed to opposite just because the ma crossing was missed.
      Do you understand what I mean?

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

      @ekifox yepp, my result looks similar. It doesn't get the string but a byte it looks like.
      No clue at the moment.

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

      @edward-brazil Okay, I digged a bit deeper into this. Here is what I did so far.0_1569375072212_EA_Help.mq4

      The thing is that you set your variable to true once the certain conditions eg. for buy is given.
      Once that happens, there are no checks if your lock conditions are still valid. Only if a trade is created once, the variable is reset to false and lock conditions are checked again.

      I re-ordered the conditions and let the EA draw a line if all lock conditions are met. So you can see where they're valid. It looks loke that now.
      0_1569375852914_b2257edf-46fd-45a3-bbcb-f50752177367-image.png
      But you can take the line out.

      Here is the reordered version.
      0_1569375936964_EA_Help_2.mq4

      posted in Questions & Answers
      T
      trader.philipps
    • RE: How to program this idea? indicator value is above the last X candles highs

      @ibrahamt I think that should do the trick (looking back from candle ID 1)

      0_1569374959379_2443c556-3e59-4a0e-8c54-1911a01b973a-image.png

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

      @edward-brazil Okay .. upper chart. When you mark the buy entr y the pruple (300 MA) was already above the white (500 MA) again. That means to me that it doesn't matter if 300 or 500 is above each other, just price must be below of them, right?
      If that is the case for the other MA's as well, you can forget about the x > / x< stuff.
      I that case you'd just check close price < all of the MAs besides the dark blue (10 MA).
      Here you want to open a buy trade each tim the price xcosses 10 MA (dark blue).

      Is that's what you want? Or do there have to be some alignment of MAs such as yellow must be under blue, blue under purple, purple under white?

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

      @ekifox that's strange! Would you mind to share your project and the text file?

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

      @edward-brazil I'm on mobile at the moment and can't see much. Will check later when on PC.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: How to set consecutive conditions

      @seb-0 there are several ways to do that such as setting and checking flags or turn on/off blocks.
      If the order is pretty clear you may still use a single line and start with the most recent action or with the strictest one.
      So if your condition is a) X crosses y and b) 2 next candle has to be something, you'd start with b) and in the line check a) afterwards.

      Always think from the point in time the EA is at current.

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

      @ekifox if you print the string, what format does it has? Can you just print it to terminal lo with the Print() function?

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

      @ekifox Use StringToDouble method to convert the string to double.

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

      @chemdog You may try to re-calculate the initial SL. That would be the most precise method.
      If you have a TP set based on initial SL you may use that in order to re-calculate the initial SL.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Trying (and failing) to create a simple EA...appealing to all FXDreema gurus!

      @SirBoyce Something like this maybe?

      0_1569336982211_MACD_Test.mq4

      Project Link

      Haven't done much testing but the basics should be fulfilled.

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

      @Chemdog I think you are facing exactly the issue that I previously described in point 2)

      Let's assume your SL is 10 pips.
      Once your BE condition is met, your Sl will be something like 0 pips from open price.
      Next time EA wants to adjust SL it takes 200% of 0 pips as it doesn't know the initial SL.

      Do you understand now what I meant?

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

      @fabien-s 4 eyes see more than 2. Sometimes I also seek for ages in my own projects before I find the issue.

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