fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. khalids222
    3. Posts
    • Profile
    • Following 3
    • Followers 6
    • Topics 108
    • Posts 567
    • Best 9
    • Controversial 2
    • Groups 0

    Posts made by khalids222

    • RE: SOME ONE THAT HAVE ALREADY PAID FOR FXDREEMA PLAN.

      @l-andorrà I use chatgpt 4

      posted in General Discussions
      khalids222
      khalids222
    • RE: SOME ONE THAT HAVE ALREADY PAID FOR FXDREEMA PLAN.

      I had been paying and subscribing to their service since 2020, almost continuously. However, a few months ago, I reached out to suggest that, considering the length of my subscription, there should be some kind of discount for long-term customers — but they didn’t respond.

      Yesterday, my subscription expired, and I decided not to renew it. Paying for a service that I can now do for free no longer made sense.

      I was surprised to find that ChatGPT can create exactly what you want — expert advisors — with extremely high accuracy, in less time, less effort, and completely free. Since I wanted to build an EA, I gave it a try and found it incredibly enjoyable, fast, free, and precise. It doesn’t even require any prior knowledge or asking anyone — and it's very easy to make modifications.

      I won’t deny that I enjoyed FXDreema and that I really liked their platform. I'm grateful to them because I learned a lot from using it. But as of today, they haven't responded to the current technological advancements, and that’s going to make things very difficult for them moving forward.

      All in all, it was a great experience, and I wish them the best.

      posted in General Discussions
      khalids222
      khalids222
    • RE: "I want to set a variable that stores the balance every time it drops by 10 dollars."

      @l-andorrà said in "I want to set a variable that stores the balance every time it drops by 10 dollars.":

      But why do you exactly need the variable if you can open a new trade directly when the condition is met?

      The condition is not working correctly

      posted in Questions & Answers
      khalids222
      khalids222
    • "I want to set a variable that stores the balance every time it drops by 10 dollars."

      I want in this example to open a trade whenever the balance drops by 10 dollars, regardless of the type of trade. I want to set a variable that stores the last balance value each time it changes. My attempts have not been successful."
      https://fxdreema.com/shared/kGtTmczmd

      posted in Questions & Answers
      khalids222
      khalids222
    • The value of the monthly or quarterly subscription؟

      A few days ago, my subscription ended, and every time I renew it, I choose six months or three months. I have been a member since around 2020. The truth is, I have benefited greatly from this site in the field of programming. I didn’t understand anything about it at all, but I recently started learning the C language about a month ago because it is high-level in programming. I made the decision to learn programming. I won’t go on too long, but I saw that a subscription to a programming site costs no more than $5 per month, yes, five dollars per month. With the presence of artificial intelligence, you can create a program that works as you want in simple steps and in any language you want, but on the condition that you understand what programming is. What I wanted to say, and I think everyone agrees with me, is that the cost of 36 euros for three months is very high on this site and should be reduced.

      posted in Questions & Answers
      khalids222
      khalids222
    • RE: I NEED TO LOGIC

      @jstap I honestly did not understand, but my question is: how do I store the balance in a variable after each SELLOR BUY PLEASE?

      posted in Questions & Answers
      khalids222
      khalids222
    • RE: I NEED TO LOGIC

      how i can SET the new balance after opening the transaction?

      posted in Questions & Answers
      khalids222
      khalids222
    • RE: I NEED TO LOGIC

      @jstap https://fxdreema.com/shared/5WxWi9tad
      I have tried all the methods, but the problem is how to SET the new balance after opening the transaction. I put a zero number in the balance box after the buying and selling process, but I do not know whether it is correct or not.
      image.png

      posted in Questions & Answers
      khalids222
      khalids222
    • RE: I NEED TO LOGIC

      @jstap First of all, thank you for the response, but I tried more than once and it did not work in all cases. I do not know what the problem is

      posted in Questions & Answers
      khalids222
      khalids222
    • I NEED TO LOGIC

      In this example, I wanted to design an expert who opens a deal when the Equity drops ten dollars. Every time the Equity drops ten dollars, he opens a deal, but I could not create the logic for this method. I do not want to open a deal at every ten points through the pink blocks. I want to open a deal. When the balance drops to only ten dollars
      https://fxdreema.com/shared/fedtKqgR
      I used GPT chat, and it was explained, but I did not understand it in the BLOCKS method. Can someone explain it in the BLOCKS method?

      double initialEquity;
      double threshold = 10;

      int OnInit() {
      initialEquity = AccountEquity();
      return INIT_SUCCEEDED;
      }

      void OnTick() {
      double currentEquity = AccountEquity();

      if (initialEquity - currentEquity >= threshold) {
          Print("Opening a trade because equity decreased by ", threshold, " dollars.");
          
          // Open a buy or sell trade randomly
          if (MathRand() % 2 == 0) {
              if (OrderSend(Symbol(), OP_BUY, 0.1, Ask, 3, 0, 0, "Opening a buy trade", 0, 0, clrGreen)) {
                  Print("Buy trade opened successfully");
              } else {
                  Print("Failed to open buy trade");
              }
          } else {
              if (OrderSend(Symbol(), OP_SELL, 0.1, Bid, 3, 0, 0, "Opening a sell trade", 0, 0, clrRed)) {
                  Print("Sell trade opened successfully");
              } else {
                  Print("Failed to open sell trade");
              }
          }
          
          // Update initial equity
          initialEquity = currentEquity;
      }
      

      }

      In this code:

      We define initialEquity to store the initial equity when the script starts.
      We define threshold as 10 dollars.
      In the OnInit function, we set initialEquity to the current equity.
      In the OnTick function, we compare the current equity with initialEquity.
      If the equity has decreased by threshold or more, a trade is opened randomly (buy or sell).
      After opening the trade, we update initialEquity to the current equity to ensure the condition applies the next time equity decreases by another 10 dollars.
      This way, a trade is opened each time the equity decreases by 10 dollars, whether it's a buy or sell trade, randomly.

      posted in Questions & Answers
      khalids222
      khalids222
    • RE: How can I buy and sell using the balance?

      @Byens Firstly, thank you, but I do not want to open a deal from the last deal.
      I want to open a deal when the balance drops to $20 only
      It must be through the balance and Equity.
      Meaning, whenever the balance drops to $20, a buy or sell is made

      posted in Questions & Answers
      khalids222
      khalids222
    • How can I buy and sell using the balance?

      How can I open a deal every time the balance loses $20?
      depending on balance - equity= 20 open deal

      posted in Questions & Answers
      khalids222
      khalids222
    • RE: want to put a blue line on the chart

      yes i know variables

      posted in Questions & Answers
      khalids222
      khalids222
    • RE: want to put a blue line on the chart

      My problem is not with the lines, but my problem is with repeatedly buying or selling at the same point.
      If the topic is easy, please explain how?

      posted in Questions & Answers
      khalids222
      khalids222
    • RE: want to put a blue line on the chart

      In this example, I tried to explain what is required better than writing alone.
      Let's look at the picture
      Green numbers indicate the deal that was opened first in the order.
      That means I opened a sell at 40, then bought at 50, then bought at 60, then bought at 70, then bought at 80, then sold at 70, then sold at 60, then bought at 90.
      You will notice that the price jumped from 60 to 90 immediately at the end of the process and did not open in the space between them.
      This is explained by the red and blue lines under the numbers.
      When opening any purchase or sale transaction, I want to place a line on the chart that specifies a color for each purchase or sale transaction, so that every time the price exceeds the existing line, whether red or blue, the expert will go to check whether there is a blue or red line. If there are two lines, nothing will open. If there is one line, only the opposite side opens.
      So that no more than one buy and sell is opened at a point

      Untitled-1.jpg
      https://fxdreema.com/shared/RLzQKDXQb

      posted in Questions & Answers
      khalids222
      khalids222
    • want to put a blue line on the chart

      I want to put a blue line on the chart for every buy transaction and a red color for every sell transaction, so that when the price exceeds the blue line, a buy opens, and when the price crosses the red line, a sell opens.
      So buying and selling is based on the chart lines only.
      https://fxdreema.com/builder

      posted in Questions & Answers
      khalids222
      khalids222
    • How do I make the balance, when it loses $20, open a deal, whether buying or selling?

      I want to make the balance when it loses $20 every time a deal is opened, so that the criterion for opening a deal is $20 balance loss

      posted in Questions & Answers
      khalids222
      khalids222
    • adjust the lot every time the trend reverses

      I try to adjust the lot every time the trend reverses from big to buy and vice versa, but it seems that the lot is opened more than once despite the use of closing the trend

      shared/fSByCjFQb

      posted in Questions & Answers
      khalids222
      khalids222
    • RE: How can I open an opposite deal after closing the buy or sell profit?

      THANK YOU VERY MUCH

      posted in Questions & Answers
      khalids222
      khalids222
    • How can I open an opposite deal after closing the buy or sell profit?

      In this example, I try to close any BUY transaction when it gains twenty points and at the same time open a direct sell transaction, and vice versa when opening a sell transaction a direct buy transaction is opened

      https://fxdreema.com/shared/61xiq03ae

      posted in Questions & Answers
      khalids222
      khalids222
    • 1
    • 2
    • 3
    • 4
    • 5
    • 28
    • 29
    • 1 / 29