fxDreema

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

    One trade per a signal

    Questions & Answers
    9
    24
    6240
    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.
    • A
      ahmedzii @Friedrish last edited by

      @friedrish you dont need a candle, just use close prices

      1 Reply Last reply Reply Quote 0
      • F
        Friedrish last edited by

        I want my EA to open just one trade per signal. What is the variable for it? whenever my EA receives the signal, it opens trade one after another! how can I stop it?

        1 Reply Last reply Reply Quote 0
        • I
          imagine2021 last edited by

          Use the block "No Trade is Running" on top of everything else

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

            It depends. " No trade" limits trades by their count. Sometimes we want to limit them by time, so then something like "Once per bar" or "Once a day" can be used. Or we can mix those filters.

            1 Reply Last reply Reply Quote 0
            • F
              Friedrish last edited by

              __It depends. " No trade" limits trades by their count. Sometimes we want to limit them by time, so then something like "Once per bar" or "Once a day" can be used. Or we can mix those filters.[/quote:2n5ark6k]
              Thank you very much 🙂
              One other question: I want to set a variable like: If RSI reaches 70 open the trade BUT wait for the candle to be closed. I need a confirmation here: When the candle closes and the RSI is above 70. How can I set the paramiteres for this? I didn't find any block regarding this. thank you

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

                "Once per bar" is a block who passes 1 time for any given candle (bar). If you put it on top level in "on Tick", then it will pass in the first tick of the new candle. At this time it's easy to get RSI of the previous candle (Candle ID = 1)

                1 Reply Last reply Reply Quote 0
                • I
                  imagine2021 last edited by

                  would this work?

                  https://fxdreema.com/shared/wqxK4IMK

                  I didnt test it but I think it would wait for the current candle close to be above the last candle close, ensuring that there is a candle close, then check that the RSI is above 70. That would mean that that you had a candle close above the 70 level.

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

                    Here is something important - Condition 7 will not wait for Condition 6 to become true. I mean, when block 6 is reached, the EA will not stay on it waiting it to pass.
                    On every tick block 9 runs, and if this block passes - the next one runs... and the same for other blocks. On the very next tick the same thing happen again. Block 8 can be reached only if blocks 7 and 6 are both true at the same time.

                    1 Reply Last reply Reply Quote 0
                    • F
                      Friedrish last edited by

                      __Here is something important - Condition 7 will not wait for Condition 6 to become true. I mean, when block 6 is reached, the EA will not stay on it waiting it to pass.
                      On every tick block 9 runs, and if this block passes - the next one runs... and the same for other blocks. On the very next tick the same thing happen again. Block 8 can be reached only if blocks 7 and 6 are both true at the same time.[/quote:7mnmuqys]

                      thank you! I have organized a module. it is a simple RSI condition but the sell side does not work. I wonder where have I done wrong. here's a pic of it http://uupload.ir/files/90sb_module.jpg

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

                        How can I know? This is a screenshot from the local version and I can't see what is going on there. Each of these blocks has enough settings to make them do something completely different than what is written in their title. I don't know your settings.

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

                          can you help me? i want to trade 1 candle 1 trade.. I use "no trade" before my condition.. it always open another trade if that candle not close yet.. do you think i must combine "no trade" with "once per bar"? or i only need use "once per bar"? thank u

                          l'andorrĂ  1 Reply Last reply Reply Quote 0
                          • l'andorrĂ 
                            l'andorrĂ  @jswind last edited by

                            @jswind Can you please share your project?

                            (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
                            • D
                              DIVYESH3190 last edited by

                              Friedrish 12 Nov 2015, 01:42
                              I want my EA to open just one trade per signal. What is the variable for it? whenever my EA receives the signal, it opens trade one after another! how can I stop it?

                              1 Reply Last reply Reply Quote 0
                              • D
                                DIVYESH3190 @imagine2021 last edited by

                                give me image

                                1 Reply Last reply Reply Quote 0
                                • D
                                  DIVYESH3190 last edited by

                                  I want my EA to open just one trade per signal. What is the variable for it? whenever my EA receives the signal, it opens trade one after another! how can I stop it?

                                  1 Reply Last reply Reply Quote 0
                                  • D
                                    DIVYESH3190 last edited by

                                    I want my EA to open just one trade per signal. What is the variable for it? whenever my EA receives the signal, it opens trade one after another! how can I stop it?

                                    give me a images

                                    1 Reply Last reply Reply Quote 0
                                    • D
                                      DIVYESH3190 last edited by

                                      Hi!

                                      I´m making a simple robot with SAR. The conditions are:
                                      -When SAR < Candle = buy

                                      When SAR > Candle = sell
                                      But the problem is that when the transaction closes (TP, SL or Manually), another trade opens again. I want to open ONCE for each condition. I want that when closed wait for a new different condition (the opposite condition).

                                      How can I do?

                                      Thanks.

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

                                        Please don't retake this old thread to ask the same question again.

                                        (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 1
                                        • L
                                          luyandasithole last edited by

                                          Hello.My EA takes buys and sells at the same time.My Ea can take buy trades, then take sell trades a few minutes later because the EA got a new signal.I do not want it to take the New signal I want it to still take the first signal.Please help
                                          HERE IS MY EA👎https://fxdreema.com/builder

                                          1 Reply Last reply Reply Quote 0
                                          • L
                                            luyandasithole last edited by luyandasithole

                                            Here is my Expert Advisor link
                                            https://fxdreema.com/shared/o4v24KZveplease help me

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

                                            Online Users

                                            S
                                            D
                                            V
                                            O

                                            16
                                            Online

                                            146.7k
                                            Users

                                            22.4k
                                            Topics

                                            122.6k
                                            Posts

                                            Powered by NodeBB Forums | Contributors