fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. fxDreema
    3. Posts
    • Profile
    • Following 0
    • Followers 691
    • Topics 32
    • Posts 7485
    • Best 277
    • Controversial 18
    • Groups 1

    Posts made by fxDreema

    • RE: Send HTTP request

      I recently worked on this part of the builder and everything worked. It was with .dll before, but now they have this function WebRequest() and I moved to that function. It requires that you allow the websites that you are using in the options first. Only their main domain is enough, like http://website.com, then in the block you can use something like http://website.com/post.php. I will suggest to always use http:// or https:// if it is SSL. In both places - in the options and in the block.

      Also, first try with this responce in a message box. You will see the result from the request in something like alert box, so you will know if it's working or not. Then you can disable that.

      And look at the error messages. If something is not working, always... I mean ALWAYS look there first.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Need help how to use Buy pending order in grid ?

      At least you must have something to decide when is the time to put that new order, when is the time that you are 1% lower than before. Normally, "Condition" block is used for that. You can check the current price and compare it to some other value, but I don't think that this is the best in this case.

      But it depends. There are blocks that can put multiple pending orders in one shot, I think you can find them, as they contain the word "grid" in their names.

      Also I can suggest a block named "Round numbers detector"

      Or you can compare the value of Open Price of the latest pending order with the current price. For this, "For each Pending Order" will be needed, but many people can't get how these pink blocks work.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: self updating/refreshing grid, compare two groups of trades

      post/7440

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: The strategy from scratch questions and problems

      Here is how any parameter from any group of trades can be extracted: https://fxdreema.com/shared/7gyl9b5ye

      1. Define some Variable that will hold the final value
      2. Use "For each Trade" or another "For each..." block. Always reset the variable here, you will see it the additional properties panel of this block that is for controlling Variables
      3. Use some Condition. In this case - if the Open Price of the current trade is lower than the Variable -> continue...
      4. ... and set the value of that Variable to the Open Price
      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: self updating/refreshing grid, compare two groups of trades

      You don't why "For each Trade" exists and why I mention that block, which I do very often. Try this one, hopefully you will get the idea: https://fxdreema.com/shared/A4w0WN0yb
      And the idea is pretty simple, but 90% of the people don't get it. This block creates a list of all available trades and then loads them one after another, sending their attributes to the blocks connected after.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Identify High and Low

      I think you are searching for this:
      Condition -> Market Properties -> Highest... Lowest...

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Entry after X consecutive closes above Y SMA - NEED HELP

      For the "consecutive closes" I will suggest the block named "Indicator moves within limits". One of the indicators will be where it is defined by default. The other one will be when you select "Dynamic value" for Upper or Lower mode.

      Better test how this works with some "Draw Arrow" block, and then do something else.

      There is a block named "Time filter". Also "Hours filter".

      For input parameters look at "Constants (Inputs)"...

      or look and test some projects from https://fxdreema.com/examples

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Trades in a Grid with the same stop as the oldest trade?

      "For each Trade", "For each Closed Trade" with value of 1 for "Not more than...". Then get SL, TP, Lots or whatever attribute in Condition -> (in loop)... (the pink dot icon)

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Trades in a Grid with the same stop as the oldest trade?

      You can save this in a variable and then use it in every block. Or you can get SL from the last trade, and use that.

      In "Buy pending orders in grid" look at the "Stop-Loss mode" options, there is something that says "the same for all orders".

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Trades in a Grid with the same stop as the oldest trade?

      I missed this tipic for some reason 😮

      There is a block to place pending orders in grid, do you mean pending orders or normal orders?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Webinars

      But many guys have more complex projects than yours, I'm not sure that you know the tool so well anyway 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Error to save the projects!

      ClauTrade will not say that 🙂 I actually made some modification, so at least you will know that I'm doing something even if I don't write about it in the updates list 😛 Unfortunately very often when I do something new - a bug appears. But I'm also here to fix it.

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Delete all pending order at time......?

      "... at time." - There are also blocks to check what is the time, like Hours filter, Time Filter or in Condition -> Value -> Time. And time formats are different, somewhere separate values are used for hours and minutes, somewhere the input is in a string (text) format.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Webinars

      This is of course very good idea, but there is small problem - since I started this project I learned how to write in english, but I never learned how to speak english. And the other problem is that I'm shy 🙂 But I'm not shy to admit that 😄 And one more - even in my language I'm not a good teacher, I always expect that people know everything I know and I become angry when they does not understand it. In short, I am not good for this job 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: self updating/refreshing grid, compare two groups of trades

      I will do something for this issue, but who knows when...

      Here is a little trick by using 1 Variable, 1 block and 1 MQL4 function (OrderLots()), but I'm lazy to explain how exactly this works, so I hope that you will somehow get it 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Multiple markets

      No, this field accepts a single symbol name, but you can try to put "Set Current Market for next blocks" before "Buy now". Of course, this will not work on the backtester, because it does not support multiple symbols.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Error to save the projects!

      Oops, my fault. I know what is the problem and I will fix it in minutes...sorry!

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: EA using Trendsentry indi

      The EA normally does not care what are the colors of the indicator. There is something called "indicator buffers" and this is the port where the indicator gives data to the EA. The EA contacts with the indicator with these buffers. Each of them has some value, all the time. What is the value... this is what matters for the EA. So if the indicator is blue or green... this is for your eyes, the EA reads numeric values only.

      There are some blocks to deal with indicators, those in "Indicators" category. Try with "Indicator is visible" to detect when something is visible, or "Indicator appear" to detect when something (like an arrow) appears on the chart, or some colors are changing.

      Here is more:
      https://fxdreema.com/documentation/gett ... indicators
      https://fxdreema.com/documentation/proj ... indicators

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: EA using TMAs

      I can see that you are using custom indicator.
      First of all, the indicator must give the EA proper values. To know this, you can use "Indicator tester" to test it.
      Then... it depends on the crossover. I will suggest the two blocks on the bottom in "Indicators" category. Otherwise the crossover that is in "Condition" is a little bit... see here: https://fxdreema.com/demo/mt4-crossover-how-it-works Instead of Ask and Bid, you can try with Candle Close.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Linear Regression Movement Indikator

      Well, not "then", I mean... not in two blocks connected one after another. The idea is that only those two buffers can be used for something. You can always use "Indicator tester" to check what buffers gives you.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 258
    • 259
    • 260
    • 261
    • 262
    • 374
    • 375
    • 260 / 375