fxDreema

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

    Block logic "Indicator moves within limits"

    Bug Reports
    4
    10
    695
    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.
    • S
      Sparrow last edited by Sparrow

      ... seems to evaluate one situation wrongly:

      When the earliest bar is the only one NOT satisfying the condition, the output is false (wrong result), when "With exception of few candles" is one or greater.

      When the exception occurs in any other bar, the output is true (the correct result).

      P l'andorrà 2 Replies Last reply Reply Quote 0
      • P
        Pheaktra Capo @Sparrow last edited by

        @sparrow Hello. You mean ignore the wrong bar and count (as correct) only the right bar?

        S 1 Reply Last reply Reply Quote 0
        • S
          Sparrow @Pheaktra Capo last edited by

          @pheaktra-capo I don't understand your question. Could you please explain.

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

            @sparrow Personally never used this block. Can you please share a visual example of the problem?

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

              https://fxdreema.com/shared/c0utwZIkb

              Meanwhile, I found another issue that might be related. When running EU M1 with block "Indicator fall" as in the demo project (see also screenshot below), there are frequent "holes" in the sequence of falling SMA50 values (see second screenshot below). Even though the SMA50 values are falling all the way. As verified with the MT5 Data Window.

              0_1675801822431_66b38eee-55b3-48cb-a226-339a4754eb22-image.png

              It might be a double value / pip value precision issue.

              0_1675801966639_98cca062-78e9-42b7-9486-401701502de9-image.png

              EDIT: The same thing happes with block "Condition". Tried this as a workaround but failed in the same way. Screenshot of this block below.

              0_1675802552042_423973fb-a543-4770-b049-b7ca285e9f77-image.png

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

                @sparrow Working on 1 minute is always very tricky. My suggestions is testing this exact config in 1H and check is the problem still persists. Then I see you are using 'once per par'. That means each 1M is checked as soon as it is open but price can move a lot before the next one appears. Remove it and try 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 0
                • S
                  Sparrow last edited by

                  Many thanks, @l-andorrà for your suggestions,

                  The reason are changes in indicator values less than a pip fraction. This can happen in any timeframe depending on the indicator calculation logic. Woudln't it be better to NOT normalize double values so that coparisons are exact no matter what?

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

                    Honestly I don't know. I try not to work on 1M. Maybe it can work but the only way to know it for sure is testing. Sorry for not being more helpful.

                    (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 @Sparrow last edited by

                      @Sparrow said in Block logic "Indicator moves within limits":

                      https://fxdreema.com/shared/c0utwZIkb

                      Meanwhile, I found another issue that might be related. When running EU M1 with block "Indicator fall" as in the demo project (see also screenshot below)

                      I checked this and the problem looks to be that I'm rounding the indicator value to 5 digits (or whatever the symbol digits are).

                      There was a time in the past when I decided that I should use the NormalizeDouble() function for each MQL5 indicator (doesn't apply for MQL4), mostly to minimize some crazy long numbers that often happen when doing calculations. I selected the number of digits for each indicator. In case of MA, it's the number of digits for the symbol, which is 5 for EURUSD. Usually this is not a problem, but in your case it is, because you are detecting very small MA changes.

                      I changed the rounding digits to 10 for MA. Now my tests are showing white vertical lines on every candle, so I guess I fixed something. I will do this for the other indicators as well.

                      I didn't tested "Indicator moves withing limits". Is there still a problem there?

                      1 Reply Last reply Reply Quote 0
                      • S
                        Sparrow last edited by

                        Many thanks! All is working now. Including "Indicator moves within limits".

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

                        Online Users

                        S
                        O
                        S

                        11
                        Online

                        146.8k
                        Users

                        22.4k
                        Topics

                        122.6k
                        Posts

                        Powered by NodeBB Forums | Contributors