fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. l'andorrà
    3. Topics
    • Profile
    • Following 0
    • Followers 415
    • Topics 76
    • Posts 16837
    • Best 1070
    • Controversial 44
    • Groups 0

    Topics created by l'andorrà

    • l'andorrà

      Ex4 files can't be imported
      Bug Reports • • l'andorrà

      8
      0
      Votes
      8
      Posts
      759
      Views

      A

      @l-andorrà said in Ex4 files can't be imported:

      I tried to import some ex4 files created with fxDreema but the platform can't do it. I get a 'No object found' message. Essentially what I wanted is changing the name of the file to create a new version. However, importing mq4 files works perfectly fine.

    • l'andorrà

      Different pip size rules for same digits charts
      Questions & Answers • • l'andorrà

      1
      0
      Votes
      1
      Posts
      305
      Views

      No one has replied

    • l'andorrà

      Is the admin modifying the code on variables?
      Bug Reports • • l'andorrà

      35
      0
      Votes
      35
      Posts
      1826
      Views

      l'andorrà

      I can provide more details on what happened exactly, just in case someone else finds this same problem. My broker is doing something really weird. Forex charts are disconnected from the server at 23:55 and reconnected at 00:05 the following day. Well, I noticed that at 00:04 there is a fast reconnection that is immediately disconnected until 00:05. It is at that ultrashort connection that the bot is working as expected but...only yesterday's info is used!!! 😮 For some reason I can't understand, all values for daily candle ID are adjusted to the last day instead of the new one.

      In my case I fixed the problem by using a time filter for the bot to begin at 00:10 every day. Then today's candle ID value are used normally. Damn brokers! Their cheating tricks are everywhere!! 😉

    • l'andorrà

      Question on arrays in fxDreema. Part 2
      Questions & Answers • • l'andorrà

      12
      0
      Votes
      12
      Posts
      981
      Views

      A

      @fxDreema could you implement a tool in the platform that allows users to test and debug each programming block individually before integrating it into the complete bot.

      To achieve this, the platform could include a debugging function that allows users to input test data and observe the output of each block. This would allow users to better understand how each block works individually and ensure they are programming correctly.

    • l'andorrà

      Am I missing something?
      Questions & Answers • • l'andorrà

      7
      0
      Votes
      7
      Posts
      389
      Views

      l'andorrà

      Interesting suggestions from both jstap and provenzano. Thank you all.

    • l'andorrà

      My first MQL5 array doesn't work
      Questions & Answers • • l'andorrà

      21
      0
      Votes
      21
      Posts
      2368
      Views

      jstap

      @l-andorrà It's ok I just meant to change unsolved to solved, guess it's if you have asked the question.

    • l'andorrà

      Partial close block not working correctly
      Bug Reports • • l'andorrà

      7
      0
      Votes
      7
      Posts
      513
      Views

      khalids222

      I noticed that the conditions are not working properly

    • l'andorrà

      Lost thread
      Questions & Answers • • l'andorrà

      10
      0
      Votes
      10
      Posts
      457
      Views

      jstap

      @l-andorrà I think the best thing to do with tis then would be to add the value to an array, every time a line is drawn the value is added to an array, unfortunately though I am not vary adapt with arrays, I am not sure if array fill need the number or elements increased when adding, also can get the array number but not sure how to get the value. Maybe @roar could help.

    • l'andorrà

      Useful information shared by @roar and @jstap
      Questions & Answers • • l'andorrà

      11
      0
      Votes
      11
      Posts
      666
      Views

      jstap

      @l-andorrà Anytime

    • l'andorrà

      I found a bug on this block
      Bug Reports • • l'andorrà

      1
      2
      Votes
      1
      Posts
      370
      Views

      No one has replied

    • l'andorrà

      Are virtual stops working...or not?
      Questions & Answers • • l'andorrà

      4
      0
      Votes
      4
      Posts
      325
      Views

      jstap

      @l-andorrà Welcome

    • l'andorrà

      Right ray doesn't work
      Bug Reports • • l'andorrà

      3
      0
      Votes
      3
      Posts
      516
      Views

      l'andorrà

      @fxdreema Updated info. Weirdly, left ray works for channeks and not for trendlines. Can that offer any hint?

    • l'andorrà

      Background option doesn't work
      Bug Reports • • l'andorrà

      5
      0
      Votes
      5
      Posts
      807
      Views

      l'andorrà

      @fxdreema Not in my end. Did you check that?

    • l'andorrà

      How can we modify a variable via chart?
      Questions & Answers • • l'andorrà

      3
      0
      Votes
      3
      Posts
      511
      Views

      l'andorrà

      @alphaomega This is certainly a way to change a variable's value, but you cannot use as I need. I need to do it manually on the chart.

    • l'andorrà

      Anyone knows how to deal with Error 4002?
      Questions & Answers • • l'andorrà

      23
      0
      Votes
      23
      Posts
      4927
      Views

      l'andorrà

      @byens Thank you for sharing.

    • l'andorrà

      Is this a bug or what?
      Bug Reports • • l'andorrà

      12
      0
      Votes
      12
      Posts
      986
      Views

      U

      0_1632649426592_Screenshot_2021-09-26-04-39-44-512_com.android.chrome_1.jpg

    • l'andorrà

      I can't find the thread, sorry. Could someone help?
      Questions & Answers • • l'andorrà

      15
      0
      Votes
      15
      Posts
      2422
      Views

      S

      @l-andorrà
      Then you just need to replace the lot size by the x in the equation :

      -100(usd) = 0.001(price) * 100 000(contract) * x(lots) * 10(leverage)
      -100 / (0.001 * 100 000 * 10) = x ..........So the lot size needed is : profit / (price * contract * leverage)
      -0.1 = x

    • l'andorrà

      What am I missing with ENUM variables for MT5?
      Questions & Answers • • l'andorrà

      26
      0
      Votes
      26
      Posts
      4466
      Views

      TipsyWisdom

      @roar said in What am I missing with ENUM variables for MT5?:

      The difference between = and == is actually very very important (I confuse them often myself lol).

      = sets the variable value
      == compares two variables together, returning True if they match, False if they dont match

      edit: hmm, dont know why I ended up answering to 2 year old thread 😅

      04e7669c-7b53-4bd3-9958-53094fe58016-image.png
      hmm food for thought, thanks Roar

    • l'andorrà

      Changing symbol without opening a new chart
      Questions & Answers • • l'andorrà

      5
      0
      Votes
      5
      Posts
      762
      Views

      l'andorrà

      I will try your suggestions. Thank you very much for your help! 😉

    • 1
    • 2
    • 3
    • 4
    • 2 / 4