fxDreema

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

    Multi Chart [Metatrader 5]

    Questions & Answers
    3
    10
    923
    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.
    • D
      duepips last edited by

      hi, I noticed that if you attach the same EA on multiple markets Metatrader 5 slows down the execution processes of the same!
      I didn't find any information about it here or on the manufacturer's website, some of you have had the same problem!
      I don't know if it can affect but I was thinking of renaming the EA for each chart but I don't think things will change as the system already divides them on the account menu, if someone can help me understand if it depends on the MT5 platform or on the wrong design of mine EA, Thanks

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

        @duepips That is normal. You are requesting the MT5 to work more as many charts are executing all the calculations required by each EA. AFAIK it is inevitable.

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

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

          @l-andorrà said in Multi Chart [Metatrader 5]:

          That is normal. You are requesting the MT5 to work more as many charts are executing all the calculations required by each EA. AFAIK it is inevitable.

          what solution would it be? Install more terminals and upload 5 max 10 charts for each one?

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

            @duepips The best one should be combining as many different EAs on one same EA, but I guess that is not necessarily possible, so yes, your solution should work.

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

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

              @l-andorrà said in Multi Chart [Metatrader 5]:

              The best one should be combining as many different EAs on one same EA, but I guess that is not necessarily possible, so yes, your solution should work.

              ok, it has a lot to do with hardware performance, I improved performance by installing a VPS with virtualbox, the CPU works much better, I think that to manage the calculations simultaneously on many graphics with EA you need a high performance pc

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

                @duepips Good for you! 😉

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

                  poorly designed blocks (bad code) will also result in slow lethargic EA's. For the most part, EA's can be done in such a way they are not a huge burden on computer resources. Even doing a few calculations.

                  The things that utilize the most resources are pending trades, being in trades, and retaining objects. Each object is cached and remember, its wise to delete drawings that are considered invalidated. If you are clever enough, you can do a time based deletion of things that anything of X age, is removed... 😄

                  D 1 Reply Last reply Reply Quote 0
                  • D
                    duepips @TipsyWisdom last edited by

                    @tipsywisdom said in Multi Chart [Metatrader 5]:

                    poorly designed blocks (bad code) will also result in slow lethargic EA's. For the most part, EA's can be done in such a way they are not a huge burden on computer resources. Even doing a few calculations.
                    The things that utilize the most resources are pending trades, being in trades, and retaining objects. Each object is cached and remember, its wise to delete drawings that are considered invalidated. If you are clever enough, you can do a time based deletion of things that anything of X age, is removed... 😄

                    I have recently begun to understand how MT5 runs the code and what is needed according to the various events, so I am optimizing my EA using on Init, Timer, Ticks, Trade, Chart and Deinit, I will make it fly with very few resources hardware, thanks

                    TipsyWisdom 1 Reply Last reply Reply Quote 1
                    • TipsyWisdom
                      TipsyWisdom @duepips last edited by

                      @duepips very awesome!
                      I hpersonally recommend not doing anything faster than a 1m TF for the most you can do to your EA as far as candle control, and backtest speed.

                      D 1 Reply Last reply Reply Quote 0
                      • D
                        duepips @TipsyWisdom last edited by

                        @tipsywisdom said in Multi Chart [Metatrader 5]:

                        very awesome!
                        I hpersonally recommend not doing anything faster than a 1m TF for the most you can do to your EA as far as candle control, and backtest speed.

                        yes, I made all the changes by moving the blocks on Init Timer Ticks Trade Chart and Deinit I carried out the test strategy now it is very fast as onTicks there are only the signals loaded and some data that needs to be updated, I am really satisfied, the pc that I use with virtualbox VPS now it has cooled down and the fans are no longer heard, the CPU used by MT5 has gone from 80/90% and 5/10%;)

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

                        Online Users

                        N
                        J
                        K
                        T
                        S
                        E
                        F

                        17
                        Online

                        146.7k
                        Users

                        22.4k
                        Topics

                        122.6k
                        Posts

                        Powered by NodeBB Forums | Contributors