fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. mustafaaydinol
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 6
    • Posts 28
    • Best 2
    • Controversial 0
    • Groups 0

    mustafaaydinol

    @mustafaaydinol

    2
    Reputation
    468
    Profile views
    28
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    mustafaaydinol Unfollow Follow

    Best posts made by mustafaaydinol

    • RE: Pass n times; general question about counters

      Hi,

      I made an example to make it sure that I get this counter block right 🙂

      https://fxdreema.com/shared/rEBy6mh0e

      Time bomb is activated --> turn off blocks --> counter: count "n", then pass --> turn on blocks --> reset counter.

      1. What is the value of n? Seconds? Minutes? Times? If it is times, then how many times in which time frames (2 times in second? 3 times per bar?)

      2. When it passes, it activates "turn on blocks" right?

      3. There is a "Counter ID (for reset)" input in "counter: count "n", then pass" block.
        Let's say the ID for "counter: count "n", then pass" block is 1 (number next to each block on black background).
        If I want to reset the counter using "reset counter" block, then should I write 1 to the "reset counter" block, or should I specify another ID in "Counter ID (for reset)" input?

      Thanks for your help 🙂 I appreciate.

      posted in Questions & Answers
      M
      mustafaaydinol
    • RE: Pass n times; general question about counters

      Maybe I'm asking too many questions but I think there should be more examples about the blocks especially for the rare and complex ones. You are doing a great job with fxdreema but a little more help would be great.

      Maybe each weak you can make a webinar and savevthe video and post the link for later access?

      And could you please explain me if it is possible to turn off blocks during erratic price moves for certain amount time for safety and turn them back on?

      posted in Questions & Answers
      M
      mustafaaydinol

    Latest posts made by mustafaaydinol

    • RE: Trendline Breakout

      Thanks a lot for the help 🙂

      I made the correction now it is like this http://prntscr.com/d6vc07 http://prntscr.com/d6vc07

      EA link: https://fxdreema.com/shared/11e3sJ5ye

      It writes "0" as price level when the price is above the candle which we state in the "Draw object" block as candle time and candle price. Is it normal?

      I don't know if it is possible but it would be great if:

      1. I can get "price level by candle ID" as price itself for both the candle and the line. Eg. "1.085=candle close price" and "1.081=Trendline price"
      2. EA can close trade When price breaks out current trend line price level: Eg: when candle close drops from 1.085 to 1.080, 1.080 < 1.081 --> Close Trade

      Thanks

      posted in Questions & Answers
      M
      mustafaaydinol
    • RE: Trendline Breakout

      Hi,

      I know that this has been asked several times before, however the posts were very old and images were deleted so I couldn't get an answer.

      Is it possible to detect trendline breakout?

      I tried to do it with this EA: https://fxdreema.com/shared/Pb6w7buQb using "Trendline Price Level" but I think that price level is the first point where we use it to draw trendline (it always writes the same number) 😞

      Which block should I use? Is there a way to get information from trendline once per tick?

      Thanks

      posted in Questions & Answers
      M
      mustafaaydinol
    • RE: Multiple Trades

      Now I've reduced the EA to this: https://fxdreema.com/shared/vkSszqtxb

      And this is the backtest result: 51 open trades...

      http://prntscr.com/d1vdnhhttp://prntscr.com/d1vdnh

      http://prntscr.com/d1vep0 http://prntscr.com/d1vep0

      Don't know what am I doing wrong anymore... I stop trying it...

      posted in Questions & Answers
      M
      mustafaaydinol
    • RE: Multiple Trades

      You might be right about what you have found, but there is one down side of this logic and I'll explain it like this;:

      No Trade (Buys) --> True --> Buy Trade opened

      During the buy position if my EA comes across sell condition then it will follow: No Trade (Sells) --> True --> Sell Trade Opened.

      Then I will have both sell and buy trades at the same time... Unless I have a logic which will close the opposite one as it opens...

      And besides "NO TRADE" means "NO TRADE" we shouldn't we debugging the codes or blocks, it should be working. I mean if there is no trade and if it returns true it should execute and do whatever I want it to do... Open buy or sell trades, nothing more or less...

      posted in Questions & Answers
      M
      mustafaaydinol
    • RE: Multiple Trades

      __mustafaaydinol, if there are bugs, someone would tell me. Especially for blocks such as "No trade" that are used in almost every project. More than 220 people have active subscriptions at any given time, there are almost 11000 profiles created. Also, I'm very careful when touching something just because many people are using the system and I don't want to break something. Most of the time I'm not touching anything, because I'm working on my local system. I just don't believe that "No trade" is broken. Because you are a newbie, the chance is that you are missing something :)[/quote:6an31yad]

      I'm definitely newbie and I think that you checked the stuff I posted. As the founder of this site and as a professional I assume that you have a minor possibility to miss something that I miss. So would you please spare your valuable time and kindly examine the ea design I posted and tell me what is wrong or why multiple trades are opened?

      Thanks

      posted in Questions & Answers
      M
      mustafaaydinol
    • RE: Multiple Trades

      ____Thanks for your reply 🙂

      However Close trade block doesn't cause the trades to close immediately (It's something acceptable in real version which would allow trade to earn enough profit).

      I don't know if you tested the example: it opens nearly 30-40 trades back to back without closing any.[/quote:p4xn1udc]

      I am sure, that your idea with open/close trade is not ok. Because in other words, you are doing this: in the same time, you close trade when condition for close is true, and this situation make true your next condition for open trade (because no trade exist), so you open/close/open/close/open/close...trades .... what you need to do for your logic, can be add some condition before "open trade", this condition can be negative condition from close trade :D[/quote:p4xn1udc]

      But if you look at the print screen you would see that there are open trades back to back regardles of no trade block. I mean they are not closed and opened back to back... Maybe my logic is wrong I don't know, but if there is a no trade block and and there are 40 trades something is definitely wrong. Maybe I don't know the logic behind the blocks completely...

      posted in Questions & Answers
      M
      mustafaaydinol
    • RE: Multiple Trades

      I'm using the browser based version...

      But I'm curious about why no trade block works that way. There is still much that we have to figure it out with the way that Fxdreema works...

      posted in Questions & Answers
      M
      mustafaaydinol
    • RE: Multiple Trades

      I think the problem is 2 "buy now" blocks are parallel after no trade block. Because right after I write the stuff, I changed the "buy now" blocks to vertical, second one coming after the first one and it worked fine for now. Maybe it has to do with the code structure of the blocks...

      posted in Questions & Answers
      M
      mustafaaydinol
    • RE: Multiple Trades

      This is what I'm talking about: I've 6 different "no trade" blocks and no matter what I've tried this EA opens multiple trades. Clearly something is wrong but I can't figure it out.

      You can view the images by clicking on urls, all of them are uploaded and available for viewing.

      This is my ea: https://fxdreema.com/shared/kgz1wC52d

      This is the test result http://prntscr.com/d08i8z http://prntscr.com/d08i8z

      And the list of the trades: http://prntscr.com/d08il4 http://prntscr.com/d08il4

      Can anyone please explain me the situation?

      posted in Questions & Answers
      M
      mustafaaydinol
    • RE: Multiple Trades

      I've tried many stuff with fxdreema but I still think that there are bugs especially with the "no trade" block. Because I have 6 different no trade blocks in my ea and still it opens multiple trades, or buy trades when there are short trades going on and vice versa.

      I checked over and over again and I'll share what I did with screenshots when I'm avaliable.

      I still think this site is one of its kind, but it needs some improvements...

      posted in Questions & Answers
      M
      mustafaaydinol