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: Problem with Magic Number

      @marianomartinez Did you casely specify the symbol explicitly? Otherwise you may share your project in order to check where the issue might be.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: pending order opening way higher than candle set in EA

      @sli1-0 check the adjust values.

      0_1570551350222_1192a702-371f-4c5c-9750-3dc51725418c-image.png

      Assuming your chart symbol is something luke EURUSD, you would add 1.00000 to the price, which would be 1.09522 and you make it 2.09522!

      Same with SL.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: block ID order

      @ambrogio That's right, but I don't care so much for the block IDs inside a line - unless if I need something to run prior to another thing. I also start every block with a pass block so I can identify my starting blocks better.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: ATR strategy, I'm confused. Help me please.

      @mieyhr I like to use pips rather than price fragments. So how I do it in my projects is:

      1. on Init tab: create a custom MQL code block. Create an double variable (here: dPipsMultiplicator)
        enter the foloowing code:
        //
        dPipsMultiplicator = MathPow(10,_Digits-1);
        //

      0_1570549247905_1f3c0522-ce09-4263-a888-847b18353719-image.png

      1. Create 2 double constants (here: cdSLAtrMult and cdTPAtrMult), so you can change the multiplicator from the EA settings.

      0_1570549218065_06a9d012-4a63-4764-ba7d-504191afdcb6-image.png

      1. on Tick: Create the following sequence

      0_1570549330318_a396f950-c1cb-4f53-aecd-00a1502c9c29-image.png

      I created a comment block that shows me the values of the variables and it looks like that on the chart:
      0_1570550605492_8e800196-8c30-44cc-8d28-eaeb9946eecd-image.png

      Finally you can use the SL and TP eg in a modify Stops block like that

      0_1570550640659_13878391-08b2-4930-b155-6c8a1a13ed0f-image.png

      As I took the parts from my actual project, the last part isn't tested, yet. But I think it will work like that.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: How to make EA to look back past x number of candles?

      @polishinglife I think you have to loop. However, have those condition be met after another or could there be some other RSI cycles that don't hit above 75 or below 40?

      I'd start a loop from candle ID1 to candle ID100. The last condition is the trigger for the loop.

      Order:

      1. ID1 RSI x< 60 (don't know if x< works here otherwise <)
      2. loop from ID2 to IDx where >75 [exit condition RSI < 40 or loop counter 100]
      3. check if IDx+1 and x+2 were also >75
      4. create another loop for candle IDx+4 until <60 say it's candle IDy with [exit condition RSI < 40 or loop counter 100]
      5. create another loop starting from candle ID y+1 and check if RSI >75. If true asuming candle IDz [exit condition RSI < 40 or loop counter 100]

      For the 75 condition may work this block, but if going backward in the loop you need to care that "iterator+3" is less than 100, where the integer variable iterator is the loop index.
      0_1570548613621_4ad6f696-4909-4c93-bb66-167c3fc7a0eb-image.png

      posted in Questions & Answers
      T
      trader.philipps
    • RE: block ID order

      @kiwi789 Yepp. I use first blocks such as 100 200 300 and so on for logical purpose and in order to have some space if I need something inbetween.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Close trade when take profit is higher then sell price

      @trader-philipps I forgot to mention that it's on the on trade tab!

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Close trade when take profit is higher then sell price

      @wakalz99 Just a rough try how I would start. This one is for buy orders on the symbol the EA is attached to. You maybe need to set same magic number as you boss EA has.

      0_1570490542809_e97af74b-d8a1-4db2-b99f-9edc96dbbe54-image.png

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Close trade when take profit is higher then sell price

      @wakalz99 Okay, I understood that you have some marti-grid EA - some call it averaging EA and it keeps openeing positions against the market. It has a steaddy profit it needs to reach - some kind of a "virtual take profit" when the complete basket of trades will be in profit.
      What you want to do now is to close positions, whose open price is lower than this "virtual take profit" as they will be in loss anyway, right?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Close trade when take profit is higher then sell price

      @wakalz99 If you are using an existing EA and try to modify the TPs / SLs of the trades it created, you should first check if when you manually change a SL or TP, the EA re-sets it again. In that case it wouldn't be possible by adjusting the SL/TP.
      The only way would be to close when a certain point in time or loss or profit is reached.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: block ID order

      @kiwi789 1,3,4,8,9 and then 2,5,6,7

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Close trade when take profit is higher then sell price

      @wakalz99 Don't understand what you try to do. Do you have a project started that you may share?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Arrows showing wrong entry/exit points

      @markc1974 So you mean that the transactions should be closer to the price line? Do you mean that with arrows - can't see any others.
      Check the spread you are backtesting with. Or share the complete projectthat we might have a look.

      posted in Bug Reports
      T
      trader.philipps
    • RE: help me, how to make ea fibo

      @trader-philipps 0_1570326050901_1-2-3 Pattern MTF v3.1.mq4 That indicator draws fibo levels by itself. Hi Lo level defines the last high / low to take as a start for fibo drawing. It will give a signal on 100 level. So if you want to open a trade on 0 level, you need to take the SL price it generates.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Expert Adviser is not loading into MT5

      @gearforlife Maybe there is a compile error in your EA? But it should show up there. Check the journal maybe. Right click on Experts and than refresh.
      If that doesn't work, you may share your project. or better mq5 file

      posted in Questions & Answers
      T
      trader.philipps
    • RE: help me, how to make ea fibo

      @winner888 Maybe you start here .

      Will you draw the fibo levels by yourself or does the ea has to do it?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: help me, how to make ea fibo

      @winner888 Okay, so tell us the strategy and if available the custom indicators to use. Fxdreema is able to draw for instance fibo tetracement levels on the chart, but maybe that's a bit too advanced for a beginner.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Compilation Error Message

      @alphaandy Need more details. May you share your project?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Bug with variables and formula

      @casebefx Can't reproduce. Maybe a browser specific or caching issue. Have you tried with browser in private mode? Are you connected through a proxy server?

      posted in Bug Reports
      T
      trader.philipps
    • RE: Only fist candle

      @eli Aditionally you might switch off you trade open blocks. However, you have to care also to enable those blocks again deoending on the conditions you specify to be a "new" market situation and want to enter again.

      posted in Questions & Answers
      T
      trader.philipps
    • 1
    • 2
    • 35
    • 36
    • 37
    • 38
    • 39
    • 50
    • 51
    • 37 / 51