fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search

    trades retake

    Questions & Answers
    3
    10
    1206
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • J
      jason0027 last edited by

      hi guys im developing my EA now im stuck here i want my EA to have 15 pips stop loss and if stop loss hit and the moving average is not cross against the closed trade then the bot must retake the trade after the candle closed please help guys

      1 Reply Last reply Reply Quote 0
      • l'andorrà
        l'andorrà last edited by

        Not sure if I catch what you want exactly. Could you please upload a few explanatory screenshot?

        (English) I will try to help everyone in these fxDreema forums. But if you want to learn how to use the platform in depth or more quickly, I can help you with my introductory fxDreema course in English at https://www.theandorraninvestor.eu.

        (Català) Miraré d’ajudar tothom en aquests fòrums d’fxDreema. Tanmateix, si vols aprendre a fer servir la plataforma amb més profunditat o més de pressa, t’hi puc ajudar amb el meu curs d’introducció a fxDeema en català a https://www.theandorraninvestor.eu/ca.

        (Español) Intentaré ayudar a todo el mundo en estos foros de fxDreema. Sin embargo, si quieres aprender a usar la plataforma en profundidad o más deprisa, te puedo ayudar con mi curso de introducción a fxDreema en español en https://www.theandorraninvestor.eu/es.

        1 Reply Last reply Reply Quote 0
        • J
          jason0027 last edited by

          HI THANKS for your response here is the screenshort0_1565447496969_Screen Shot 2019-08-10 at 4.27.36 PM.png

          1 Reply Last reply Reply Quote 0
          • l'andorrà
            l'andorrà last edited by

            Could you please confirm I understood it correcty?

            1. Full bullish bar closes above fast MA.
            2. At the end of that bar a buy is open at that same price with a 10 pips SL.
            3. Price touches SL (fast MA) but doesn't cross it below.
            4. New bar closes above MA.
            5. New trade is open at that bar close price.

            Is that correct?

            (English) I will try to help everyone in these fxDreema forums. But if you want to learn how to use the platform in depth or more quickly, I can help you with my introductory fxDreema course in English at https://www.theandorraninvestor.eu.

            (Català) Miraré d’ajudar tothom en aquests fòrums d’fxDreema. Tanmateix, si vols aprendre a fer servir la plataforma amb més profunditat o més de pressa, t’hi puc ajudar amb el meu curs d’introducció a fxDeema en català a https://www.theandorraninvestor.eu/ca.

            (Español) Intentaré ayudar a todo el mundo en estos foros de fxDreema. Sin embargo, si quieres aprender a usar la plataforma en profundidad o más deprisa, te puedo ayudar con mi curso de introducción a fxDreema en español en https://www.theandorraninvestor.eu/es.

            1 Reply Last reply Reply Quote 0
            • J
              jason0027 last edited by

              100% correct but this will happen only two times per trade which means total stop loss will be 30 pips. 1 original trade plus two retakes will give us 30 pips stop loss combined.

              1 Reply Last reply Reply Quote 0
              • l'andorrà
                l'andorrà last edited by

                And can this combination be variable or is it fix? I mean, is always the first trade 10 pips SL, then the second another 10 pip and same for the last one or could it be 12, 12, 6, for axample?

                (English) I will try to help everyone in these fxDreema forums. But if you want to learn how to use the platform in depth or more quickly, I can help you with my introductory fxDreema course in English at https://www.theandorraninvestor.eu.

                (Català) Miraré d’ajudar tothom en aquests fòrums d’fxDreema. Tanmateix, si vols aprendre a fer servir la plataforma amb més profunditat o més de pressa, t’hi puc ajudar amb el meu curs d’introducció a fxDeema en català a https://www.theandorraninvestor.eu/ca.

                (Español) Intentaré ayudar a todo el mundo en estos foros de fxDreema. Sin embargo, si quieres aprender a usar la plataforma en profundidad o más deprisa, te puedo ayudar con mi curso de introducción a fxDreema en español en https://www.theandorraninvestor.eu/es.

                1 Reply Last reply Reply Quote 0
                • J
                  jason0027 last edited by

                  it will be always 10 pips

                  1 Reply Last reply Reply Quote 0
                  • l'andorrà
                    l'andorrà last edited by

                    Ok, now I got it. If you don't mind, I will send you a private message.

                    (English) I will try to help everyone in these fxDreema forums. But if you want to learn how to use the platform in depth or more quickly, I can help you with my introductory fxDreema course in English at https://www.theandorraninvestor.eu.

                    (Català) Miraré d’ajudar tothom en aquests fòrums d’fxDreema. Tanmateix, si vols aprendre a fer servir la plataforma amb més profunditat o més de pressa, t’hi puc ajudar amb el meu curs d’introducció a fxDeema en català a https://www.theandorraninvestor.eu/ca.

                    (Español) Intentaré ayudar a todo el mundo en estos foros de fxDreema. Sin embargo, si quieres aprender a usar la plataforma en profundidad o más deprisa, te puedo ayudar con mi curso de introducción a fxDreema en español en https://www.theandorraninvestor.eu/es.

                    1 Reply Last reply Reply Quote 0
                    • fxDreema
                      fxDreema last edited by

                      I imagine two ways of doing this.

                      The better way is on the beginning of the candle to check when the last trade was closed, and probably how, and the MA levels. In other words, at the time when a new trade is supposed to be created if the scenario you described happened, you check whether the scenario happened and you create a new trade if needed.

                      And the other way is to detect when SL is hit (in "on Trade"), then to write value to some Variable, or even to create some object as a form of temporary memory, and then in the beginning of the next candle (assuming you have "Once per bar" in "on Tick") to check the value of that variable and to create the new trade. In other words, you have 2 events that can happen let's say in 5 minutes apart - when the first event happens, you will write some value in some variable to mark that event and then when the second event happens you will check that variable to see whether the first event happened.

                      I prefer the first way, because it would work even if you restart the EA. The second way involves variable, which is just a temporary memory and exists until the EA is working.

                      1 Reply Last reply Reply Quote 0
                      • J
                        jason0027 last edited by

                        thanks for respond im not good in this so if you can help with screenshorts of the blocks will be helpfull

                        1 Reply Last reply Reply Quote 0
                        • 1 / 1
                        • First post
                          Last post

                        Online Users

                        X
                        A

                        8
                        Online

                        146.8k
                        Users

                        22.4k
                        Topics

                        122.6k
                        Posts

                        Powered by NodeBB Forums | Contributors