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: arrow EA

      @regalo are you sure that the buffer has a price value?

      0_1590072736958_63f36a23-05c9-4917-bd15-c11bd4a065eb-image.png

      and as @ambrogio said .. better use ID1

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Closing Trades

      @johnny_prd Create a loop for orders and use this block

      0_1587424526916_cc1c42a5-7515-4a19-b131-3d101824c833-image.png

      if you want to set it by time.

      Another way may be using expiration but maybe that works only for pending orders. Haven't tried yet.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: compiling issue

      @zackry Are you getting any warnings when compiling in Metaeditor?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: compiling issue

      @zackry Are you sure ex5 is compiled by fxdreema without any issues? I remember I once had an issue with a block where I changed some setting, but the one configured before was still also compiled. For instance if you choose a Buy block with fixed SL / TP and put a variable in there and save it. After that I changed the MM to risk percent based on SL but didn't clear the variables used before in static SL / TP. If I remeber it right, fxdreema compiled well or at least didn't show any issue, but compileing the sources in Metaeditor caused errors.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: check profit question

      @norbii012 said in check profit question:

      i want make this somebody can help me pls ?
      check running trade , and if it is not profitable, do not open another trade, if it is on profit, make trade

      Try this block as a condition to check.
      0_1586492261853_6b5fc45d-99dc-493f-a785-c5730cb1a055-image.png

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Partial closure on MT5 doesn't round lot size to a valid value

      @xfire said in Partial closure on MT5 doesn't round lot size to a valid value:

      @trader-philipps Hi. can you share your project?
      i see you have a message for retrying in 5 s maybe your broker have problem with your EA

      Sorry, can't share it here. But it is easy to reproduce. Choose an uneven lot size and partly close 50%.

      posted in Bug Reports
      T
      trader.philipps
    • RE: Partial closure on MT5 doesn't round lot size to a valid value

      @l-andorrĂ  Yeah, looks like. Thought it was so easy to just use that block. I think in MT4 it works fine.

      posted in Bug Reports
      T
      trader.philipps
    • RE: "object on chart" on previous candle ?

      @zackry If you know the name, can't you choose the Candle ID 1? Haven't used it ever, but maybe it gives you the candle ID and you might compare it if it equals 1.

      0_1586489675775_4d6fb7b0-a4fe-48fd-8b15-81d1e85daad1-image.png

      posted in Questions & Answers
      T
      trader.philipps
    • Partial closure on MT5 doesn't round lot size to a valid value

      I was just adding the scale out to my project which is done by partial closure. However, fxdreema doesn't round to a valid lot size and I see the following error in the log

      0_1586391230594_e6fc00fa-2e61-4525-9347-a8fdd223cc7b-image.png

      Here is the corresponding block.

      0_1586391297211_0cc8b0b2-f466-4a10-9747-e083b92ec106-image.png

      posted in Bug Reports
      T
      trader.philipps
    • RE: Chart Indicator EA

      @l-andorrĂ  I think in this case it's nit so hard - the indicator has just 1 parameter đŸ˜‰

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Please help with the condition below with illustration

      @xfire said in Please help with the condition below with illustration:

      @traderea6 OK you should try to solve your issue with change samples

      the example working when MA is above candle and candle is less than 40 pip near MA

      maybe 1 pip or 39 pip

      just try and say to me what happened

      0_1586159155712_Annotation 2020-03-03 092250.png

      Shouldn't block 15 in your screenshot read like +40 pips instead of just +40 ?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Possible basic errors in my program structure causing issues

      @dore Well, you should try to let run each block as often than needed. That's why I place Once per bar on the top.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: I GOT AN FREE DIVERGENCE INDICATOR ,NEED HELP TO MAKE A MAKE AN EA!

      @nandu You might ask the author.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Is there a way i can have a screen shot of a chart sent to my email address on every 30 min candle close

      @crazycnw Sending mail and taking screenshot is basically possible with fxdreema. The combination of both I think you need to do somehow outside or use external APIs.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Possible basic errors in my program structure causing issues

      @dore If you want to pass the structures twice per tick, than both are fine. If that is a mistake, none of the given ones are good.

      I'd in this case do something like this

      0_1586098846973_eee1355f-8da4-4322-b499-ec4d0f2bcd4c-image.png

      Keep in mind that block 1799 and followwed are executed before block 1801 and so on!

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Custom Indicator Help

      @l-andorrĂ  said in Custom Indicator Help:

      I uploaded it and I see the problem. No buffers are automatically identified by fxDreema. You will have to create them as explained here:

      https://fxdreema.com/forum/topic/4208/tutorial-06-my-indicators-in-fxdreema

      @Bruno-3 Try to import this indicator. I modified it sometime ago and it should import correctly.
      0_1585787032652_TMA_CG_mladen_NRP.mq4

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Create an operation with an object in a chart.

      @agbatoadesina Could you share that part, please, where you are using the buffers?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: After closing trade no trade on same day

      @trader-philipps said in After closing trade no trade on same day:

      @l-andorrĂ  Isn't it easier to set flags? Such as as bool flag to true if trade is closed and on each new daily candle set the bool frlag to true?

      I meant that after trade is closed set the bool flag to false and set to true on next daily candle.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Good Strategy (so far) but confusing results.......any ideas?

      @abarrett69 said in Good Strategy (so far) but confusing results.......any ideas?:

      @trader-philipps Can you tell me where this is configured? I use slippage but assume that is slippage on the trade but I can't see Spread?

      Well, I use Tick Data Suite on MT4, so it says variable for me. If it says current, tester takes spread from market watch , which works okay during market hours but on off market hours can be very high.

      0_1585566367411_a325ce7d-5186-436d-958d-609ceb186b31-image.png

      posted in Questions & Answers
      T
      trader.philipps
    • RE: why some trade not close on renko chart

      @l-andorrĂ  said in why some trade not close on renko chart:

      I see you are using M2 timegrame in MT4. Did you create that custom timeframe? That is not available by default? On the other hand your 'Once per bar' blocks are specified on the 'current' timeframe. Is it different from M2?

      M2 is used for the renko offline chart. That might not be the issue. I think it's more about the indicator.

      @bob-2 Are you sure that your half trend indicator is not repainting? It looks like the arrow appear later than on current candle!?!

      posted in Questions & Answers
      T
      trader.philipps
    • 1
    • 2
    • 3
    • 4
    • 5
    • 50
    • 51
    • 1 / 51