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: last 30 candle low

      @turelforex Do you really need 30 highs and lows? Or just the high and the low of the last 30 candles?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: automatic close

      @martenzit Something like this

      0_1581394914637_93b11fab-13f3-416f-a70f-58f1273f62ec-image.png

      Put the amount of money in nthe check profit block.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Problem with buffer

      @ambrogio I tested your project now and so far it didn't throw the zero divide error. However, I saw that it just draws down arrows
      0_1581394581226_84d1065d-e309-42e4-bc74-f069931ee79a-image.png

      So I slightly changed the code of the indicator to show the existing trend buffer. So you just need 1 condition to check > or < 0
      Here it is.
      0_1581394655681_Zero lag Hull moving average.mq4

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Looking partner ea programer

      @traderscornerph As long as it sounds interesting, I might help as well.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Problem with buffer

      @ambrogio At which line it throws the zero divide?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: pls help

      @kop said in pls help:

      @kop 0_1581333443862_5orless.mq4

      I changed the EA you attached the way I would build it.

      0_1581352892947_8573dac4-85b9-4d46-a94b-8d39506e4367-image.png

      And here is the result ..

      0_1581352947310_f6f373dd-5ac6-4ed4-94a8-4804c0bf43b9-image.png

      It opened 6 trades. That is okay, as after EURUSD trades were opened, The check trades count was 4. So it passes once more. After GBPUSD it was 6 and hence it didn't open more trades.

      0_1581353064538_1581333459235-5orless.mq4

      posted in Questions & Answers
      T
      trader.philipps
    • RE: pls help

      @kop I think your EA just do the check on the symbol the EA is attached to. Do you wnat max 5 trades per symbol or in total 5 trades?

      I would instead of the many market switches use a list of constants and specify it on every related block. For example the check trades count one

      0_1581352274021_adb83b74-b501-4850-b33f-b104780eb07f-image.png

      You use option 1 but probably want option 3 in the description.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: The Time Filter Block does not work correctly

      @tcanuto Check my Tutorial EA. I use some boolean flags as well as switch ON/OFF blocks in there.

      One example is the CoF feature. On the init tab I read the values from the constants and set bool flags accordingly

      0_1581351702842_08a8573c-b927-4bb4-b525-9a9f48745fe2-image.png

      The on the on Tick tab I check the flag.

      0_1581351769606_fc4be8ae-f72a-4619-b786-da30e17c5055-image.png

      Of course this example is for generally switch on/off parts of the code by EA parameters. But it may give you an idea.

      I like the bool flags. However, you might use the numeric (if more than 1 option) or string (never used) type as well.

      posted in Bug Reports
      T
      trader.philipps
    • RE: indicators filter

      @traderscornerph Awsome in the MT4 version has just 1 buffer you coukd use with your EA. You might check if it blow or above 0. Or you might check if candle ID1 AO value was higher or lower candle ID2 AO value. It depend what your filter actually is meant to do.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Ma shift -20 not working

      @markz1 Looks like we talk about different things. May you share your project?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Creating EA Help!: Trend Continuation with Currency strength, moving avg, and fib pullback

      @trader_sauce What does low mean? Low of the previous candle?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Weird Zero Divide Error On Dukascopy Data Indices

      @everjn17 Just delete the block and re-create it with same settings. Try this and let me know if it helped.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Need idea about MACD main & signal line crosses above the MACD threshold settings.

      @yumatheba Well, I'm not sure, if I get your right. Should the trade be opened when the threshold is met or should the main line after the cross with the signal line, but only if main line is above threshold?

      However, here are the 2 options in blocks I would start with:

      1. MACD cross must be above threshold:

      0_1581296051130_aa95db7f-2f45-4081-9f18-5dc6a6358b5e-image.png (Sell signal)

      1. Macd main has crossed (sometimes) the signal line and signal is if main line crosses threshold:

      0_1581296271770_7ff10a8b-b2c6-4bf0-8ee0-6c5d4f45b3e0-image.png

      Whatever your intention is, one of both blocks should be sufficient.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Moving Average cross logic needed

      @rmante Well, a VPS is a virtual computer. There you would install your Metatrader and your EA. This virtual computer runs 24/7 and if you don't close Metatrader, your EA would do so either.
      You might use your laptop in order to connect to the VPS (Remote Access) and check how things are going, but when you end Remote session Metatrader should still run.
      So there is no need for a fxdreema block. Your VPS is like a laptop that never gets switched off.
      Or did I get you totally wrong?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Check max. age of a signal

      @l-andorrà Try to find a way using simple fxdreema blocks. Looping I do only if it is not avoidable.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Need idea about MACD main & signal line crosses above the MACD threshold settings.

      @yumatheba To catch the value of the cross exactly I think is hard. If it is sufficient, just check if on candle ID 1 there was a cross and check if both lines were above the threshold. In that case the cross happened above as well (most likely). If you want to make sure you might check that condition for candle IDs 1 and 2.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Need idea about MACD main & signal line crosses above the MACD threshold settings.

      @yumatheba ok, got it. So you want to enter the market before the zero line cross, right?
      Actually that is the same like zero line cross, just with a different number.
      Use condition block with x< upper threshold-level for sell trade and you'd be fine I think.
      For the buy trade use x> lower threshold level

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Close all when trailing stop is hit

      @l-andorrà I think he means that the way he did it before the trailing never had a chance to happen. Just a rough guess.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Need idea about MACD main & signal line crosses above the MACD threshold settings.

      @yumatheba Didn't understand what you try to achieve.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: how to use this indicator?

      @sebaseba54 That won't be so easy as the indicator doesn't offer any buffers. Hence you need to loop through the objects it creates.

      Those objects represent the signal shown in the chart.

      0_1581270959020_cc43d1d4-0c81-43be-95b7-e0d8391f6821-image.png

      You need to find the latest rectangle that has the colorRed or Blue. Then check if it's drawn to the current candle as well (signal still valid!?!).
      Than you can check the other rectangles. You need to jnow that a recangle always consist of 2 prices and 2 timestamps. In the object list (CTRL-B) you can find them.

      Here is an example rectangle definition.

      0_1581271358219_48e6604f-0a20-49de-8bed-9c12638766ee-image.png
      0_1581271315346_84e76603-aec1-4d9f-8113-e00411848e1f-image.png

      In this case time value 2 is the current candle time. So it is still a valid signal. Upper Price is the entry level (I think) and the second price is the TP1 on that sell signal.

      For the next rectangle (crimson color) ..

      0_1581271507768_60b1fdcc-61d2-4c3d-90df-0877e154e472-image.png
      As you can see the first price isidentical to the TP1 price or the red rectangle. So you can now repeat theis until you get all the information you need.

      posted in Questions & Answers
      T
      trader.philipps
    • 1
    • 2
    • 6
    • 7
    • 8
    • 9
    • 10
    • 50
    • 51
    • 8 / 51