fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. l'andorrà
    3. Posts
    • Profile
    • Following 0
    • Followers 415
    • Topics 76
    • Posts 16841
    • Best 1072
    • Controversial 44
    • Groups 0

    Posts made by l'andorrà

    • RE: HELP REALLY NEED WITH MT5 EA

      @leonardo-1 said in HELP REALLY NEED WITH MT5 EA:

      Just one more request if you may,may you please compile it for me,I have the basic version of fxdreema so I'm not able to compole it.Thank you very much

      Really, man...:(

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: HELP REALLY NEED WITH MT5 EA

      @roar said in HELP REALLY NEED WITH MT5 EA:

      Here:
      https://fxdreema.com/shared/lEFKiMwre

      I'm curious about those 'Set current timeframe blocks'. If I understand it correctly, the one on top makes all those below it to work on TF M5 until those with number 3 and 11. Then all blocks below them will work on TF H4. Right?

      If so, why not just using 'Once per bar' blocks with those same specified TF instead?

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: The clock seconds do not count well.

      @juan-manuel-quiñonero said in The clock seconds do not count well.:

      ://fxdreema.com/shared/EG6Sy6uRd

      What's the problem exactly? BTW, the first pass block on the 'On Tick' tab is not necessary.

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: Help on Trailing stop block appreciated (SOLVED)

      Ok, I will detail a concrete example.

      1. Initial conditions: TS trigger every 4% and TS step at 1% of open price. Both percentages are input parameters, so they can different every time the EA is run.

      2. Sell trade at 1.12320

      3. This means that 1.12320 x (4/100) = 0.04493. So when price hits the following levels:
        a) 1.12320 - (0.04493 x 1) = 1.07827
        b) 1.12320 - (0.04493 x 2) = 1.03334
        c) 1.12320 - (0.04493 x 3) = 0.98842
        d) 1.12320 - (0.04493 x 4) = 0.94349
        e) ...and so on the TS is to be moved.

      1. SL is moved according to the input parameter: 1.12320 x (1/100) = 0.01123. This means it is moved to the following price levels:

        a) 1.12320 - (0.01123 x 1) = 1.07827
        b) 1.12320 - (0.01123 x 2) = 1.03334
        c) 1.12320 - (0.01123 x 3) = 0.98842
        d) 1.12320 - (0.01123 x 4) = 0.94349
        e) ...and so on.

      And this is to be calculated for all open trades (up to 10 open trades at the same time).

      I hope it is more clear now.

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: Help on Trailing stop block appreciated (SOLVED)

      @roar said in Help on Trailing stop block appreciated:

      @l-andorrà I have a feeling this is unnecessarily complicated approach 😄
      Why doesn't "% of profit" work as a solution?
      What do you mean by "11% of open price", isn't that like EURUSD crashes to 0.1234 ?
      0_1579452288615_32acadd5-4776-43ee-9534-926f3d47f370-image.png

      That option doesn't work because that % is static on the block (something I want) but is linking the current price to the open price (something i do NOT want). Is that same option was available for the current SL level instead of the open price that would do the trick. Additionally it is calculated as money (profit), and not pips or price level. Why transforming the initial % into money first and then put them here? Double effort worthless, I'm afraid. 😞

      On the other hand, when I say '% of open price' I mean exactly that, an percentage applied to the open price that is added (for buys) or substracted (for sells) in order to get the trigger for the TS to move up/down to the trail step.

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: Coders! I am asking for your help Please.

      We'll be more than happy to help you. If you want to share your strategy we can lead you path to the right direction! 🙂

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: Help needed in modifying values in a sequence

      @roar said in Help needed in modifying values in a sequence:

      @l-andorrà

      I guess that 'loses -2' text is the reason for that failure. I'm not sure, though. I would say this is not the correct way to write that variable there.

      It is not the default way, but actually that works fine 😉

      Once more I learnt something new! 😉
      Thank you.

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: Help on Trailing stop block appreciated (SOLVED)

      @josecortesllobat Your suggestion is apparently very close to what I need. However, I see two problems. The first one is this formula

      TrailStepPips = PipsToMoveStopLoss x TrailStepPercent = 1100 x (4/100) = 44

      If you read my first post, the trailing step is a % of the ope price too. This means the formula should be:

      TrailStepPips = OpenPrice x TrailStepPercent = 1.00000 x (4/100) = 0.04.

      Then I don't understand the following one:

      TrailStopLevel = StopLossLevel + TrailStepPips (as a price fraction). Is StopLossLevel the initial SL? And how TrailStepPips (as a price fraction) is affected by the new result 0.04?

      The second problem is your loop. Those calculations before the 'For each trade' block will not be updated for all open trades, but on a tick on tick basis. If I have 3 open trades, all of them will have to have their specific TrailStopLevel value, for example. In your structure, if I understand it correctly, that cannot happen as those calculations will be applied before eavary trade is searched for.

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: Help on Trailing stop block appreciated (SOLVED)

      @trader-philipps I tried as per your first post above and I confirm it doesn't work. For a reason I don't understand the stop moves before hitting the first level. 😞 Let me show my last backtest example. I tried GBPJPY qith a 4% trailing stop and a 1% trailing step.

      The open price for a buy was 131.094. This means that:
      a) Trailing stop = 131.094 x 1.04 = 136.338.
      b) Once the previous price is hit the trailing step should move the stop to: 131.094 x 1.01 = 132.405.

      Well, because of weird calculation made by the block, the stop moved when price reached 135.300, far before it should.

      On your second suggestion, yes, I need static values. The problem is finding the equivalent of pips or price levels from the initial percentages and then 'translate' them into the trailing stop block.

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: Help needed in modifying values in a sequence

      I guess that 'loses -2' text is the reason for that failure. I'm not sure, though. I would say this is not the correct way to write that variable there.

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: basic ma touch

      Do not use any candle info on the left operand. Instead use Maket properties > Ask or Bid.

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: My own expert advisor

      Six months is a too shot period to back test. Try at least 5 years and then we can begin to thing you found something. Please don't get me wrong. This is not a criticism, just my own experience. Believe me, I found tens of good systems that were great for a very shot time and then they destroyed the balance. 😞

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: Help me please,im Newbe

      Ok. Thank you.

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: Help on Trailing stop block appreciated (SOLVED)

      Thank you to both of you. Let me study your suggestions in detail and I will be back with my results.

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: Help me please,im Newbe

      Just curious. Is this grid defined by candle IDs in 'Time 1' and 'Time 2' operands?

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: Maintain the same distance between the price a pending operation.

      I'm afraid I don't fully understand. The distance between a pending order price and what else?

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: pagamento via bitcoin

      I know bitcoin payment confirmations are slower than mainstream ones. Please contact the admin via the support page if you see no confirmation soon.

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: Changing daily variable from a constant

      Do you mean the 'Constants' (input paraneters) or the 'Variables'? And which of them exactly?

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: Help on Trailing stop block appreciated (SOLVED)

      You're right, sorry :D. Here it is:

      https://fxdreema.com/shared/ZPUTG3aKb

      This is for buys only. This is what I do:

      1. Trail percentage and trail step are inserted as input parameters as decimal numbers (11 and 4 for example).
      2. Both percentages are translated into fraction numbers (in this example 0.11 and 0.04)
      3. Then they are used in that loop inside a loop structure.

      The loop below the buy block is designed to visualize all trailing triggers ans trail steps. None of them is visualized.

      The loop below 'For each trade' is supposed to do the job. It doesn't. I'm still struggling with loops. I guess the solution is there but I can't see it right now. Any hint?

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • RE: Help on Trailing stop block appreciated (SOLVED)

      I see there is a nice option called 'Multiple levels'. Apparently that is exactly what I need but it can only be selected in pips. What kind of loop inside the 'For each trade' loop should I create to 1) transform the initial percentages into pips, 2) referred to each open price, 3) to be inserted as a string variable into that box?

      I pray for it to be feasible without custom code blocks. Otherwise I'm doomed. 😞

      posted in Questions & Answers
      l'andorrà
      l'andorrà
    • 1
    • 2
    • 767
    • 768
    • 769
    • 770
    • 771
    • 842
    • 843
    • 769 / 843