fxDreema

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

    How can info be included on the 'comment' column when closing a trade?

    Questions & Answers
    4
    12
    2049
    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.
    • l'andorrà
      l'andorrà last edited by

      I know how to do it viqa the 'buy/sell now' blocks, but I can't find the way to do it at the moment the trade is closed. Any suggestion?

      (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.

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

        @l-andorrà hI L-andorra, have you tried adding a string variable into the label box, and then under on trade, for each closed trade modify variable, and then after set time se variable back to blank.

        This is how I would try, hope this helps, I have not tested but I have done similar things before.

        Learn fxDreema Without the Wait!

        My comprehensive book, available on Amazon, is packed with examples and invaluable insights to help you fast-track your learning journey.

        The paperback and hardback editions include MT4 & MT5 QR codes for easy access to all prebuilt projects and robots, including my latest gold trading robot!

        Don’t miss out

        Click here➡️ https://mybook.to/fxDreema to get your copy today!

        Enjoy! 😊

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

          I think it's only possible to include a comment when opening a trade. It cannot be changed afterwards.

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

            @jstap Thank you for your answer. What do you mean by 'label box' exactly. I'm afraid I don't fully understand what you mean.

            (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.

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

              @rafaelgrecco That what I guess, but I'm not sure.

              (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
              • R
                rafaelgrecco last edited by

                @l-andorrà It cannot be changed on MT4, but can be changed on MT5.

                I believe we don't have a block for that function, so you would have create a Custom MQL Code block like this:

                m_request.comment = PositionGetString(POSITION_COMMENT);

                I'm not sure if you could just use a Close Position block and then use the Custom MQL Code block to change the comment or if you have to create the entire close function, something like:

                m_request.action =TRADE_ACTION_DEAL;
                m_request.position =ticket;
                m_request.symbol =symbol;
                m_request.volume =PositionGetDouble(POSITION_VOLUME);
                m_request.magic =m_magic;
                m_request.deviation=(deviation==ULONG_MAX) ? m_deviation : deviation;
                m_request.comment = PositionGetString(POSITION_COMMENT);

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

                  @l-andorrà Like this, maybe I have not understood your problem correctly but this is what I mean. 0_1615493015645_Screenshot (303).png

                  Learn fxDreema Without the Wait!

                  My comprehensive book, available on Amazon, is packed with examples and invaluable insights to help you fast-track your learning journey.

                  The paperback and hardback editions include MT4 & MT5 QR codes for easy access to all prebuilt projects and robots, including my latest gold trading robot!

                  Don’t miss out

                  Click here➡️ https://mybook.to/fxDreema to get your copy today!

                  Enjoy! 😊

                  michaemia l'andorrà 2 Replies Last reply Reply Quote 0
                  • michaemia
                    michaemia @jstap last edited by

                    @jstap RIP ram, so many tabs opened 😲

                    Incurable anime aficionado and uncertified trading analyst.

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

                      @jstap I'm afraid this is not what I was asking for, sorry. I know this block. What I need is insertig info on the 'comment' column of the MT4 history tab. Thank you for your interest anyways.

                      (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.

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

                        @rafaelgrecco I hate custom code. 😞 Ok. I will try it. Thank you very much.

                        (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
                        • jstap
                          jstap @michaemia last edited by

                          @michaemia Yes it's called being lazy, but it stopes having to research (rubbish memory) 🙂

                          Learn fxDreema Without the Wait!

                          My comprehensive book, available on Amazon, is packed with examples and invaluable insights to help you fast-track your learning journey.

                          The paperback and hardback editions include MT4 & MT5 QR codes for easy access to all prebuilt projects and robots, including my latest gold trading robot!

                          Don’t miss out

                          Click here➡️ https://mybook.to/fxDreema to get your copy today!

                          Enjoy! 😊

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

                            @l-andorrà No worries, what you need is beyond my expertise 🙂

                            Learn fxDreema Without the Wait!

                            My comprehensive book, available on Amazon, is packed with examples and invaluable insights to help you fast-track your learning journey.

                            The paperback and hardback editions include MT4 & MT5 QR codes for easy access to all prebuilt projects and robots, including my latest gold trading robot!

                            Don’t miss out

                            Click here➡️ https://mybook.to/fxDreema to get your copy today!

                            Enjoy! 😊

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

                            Online Users

                            E
                            N
                            N
                            F
                            M
                            A
                            L
                            O
                            S

                            19
                            Online

                            146.7k
                            Users

                            22.4k
                            Topics

                            122.6k
                            Posts

                            Powered by NodeBB Forums | Contributors