fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. skytrader
    3. Posts
    S
    • Profile
    • Following 0
    • Followers 0
    • Topics 8
    • Posts 20
    • Best 0
    • Controversial 1
    • Groups 0

    Posts made by skytrader

    • RE: Backtest newsfilter MT4 (Tutorial) (CSV)

      thank you for sharing the script. pls note that your script will be failed for broker with several symbol like Gold, Silver. can modify your base_currency & quote_currency like this (in block "read news"):

      filehandle = FileOpen(filename,FILE_READ|FILE_CSV,',');
      base_currency = StringSubstr(Symbol(),0,3);
      quote_currency = StringSubstr(Symbol(),3,3);
      if(StringSubstr(Symbol(),0,4) == "GOLD"){
      base_currency = "XAU";
      quote_currency = "USD";
      }
      if(StringSubstr(Symbol(),0,6) == "SILVER"){
      base_currency = "XAG";
      quote_currency = "USD";
      }
      //base_currency = Symbol();
      Print("base_currency: ", base_currency, ", quote_currency: ", quote_currency, ", Symbol: ", Symbol() );

      posted in Tutorials by Users
      S
      skytrader
    • RE: check age

      @fxdreema can you make it as option to include/exclude weekend in "check age" block?

      posted in Questions & Answers
      S
      skytrader
    • RE: check age

      @fxdreema that is awesome! thanks so much.

      posted in Questions & Answers
      S
      skytrader
    • check age

      I'm trying to find the answer from this forum but couldn't.
      I'm curious is "check age" block also include weekend (when market closed) as part of calculation?

      I worry it calculates and include weekend which doesnt make sense for me because if i have logic "close trades if floating more than 24 hours" and trade was opened on friday night. it means it will close trades on monday morning at beginning of market.

      any clue on how "check age" works?

      thanks

      posted in Questions & Answers
      S
      skytrader
    • RE: EA constant input is not sorted exactly like in the builder

      Oh, suddenly it works after I change the constant name. I added new prefix just to test.

      posted in Bug Reports
      S
      skytrader
    • EA constant input is not sorted exactly like in the builder

      Hi,

      I just have this problem recently (in the last 2-3 days), it was ok before.
      i create constant input (for EA setting), and generated into .ex4 file and .mq4 file

      but when i check in backtest mt4, the setting sorting is different.
      ex: from the fxdreema builder EA setting is: A, B,C but from MT4 backtest the setting is different sorted.

      thanks

      posted in Bug Reports
      S
      skytrader
    • RE: variables string somehow converted into number 1525542307278

      awesome. I think it's fixed now. thanks!

      posted in Bug Reports
      S
      skytrader
    • RE: variables string somehow converted into number 1525542307278

      haha... I knew it. you must be working hard doing something good for your customer.. 🙂
      your software is the best on earth. keep the good work, buddy!

      thanks so much for your support & quick response.

      posted in Bug Reports
      S
      skytrader
    • variables string somehow converted into number 1525542307278

      I was working in my new EA. added some changes and try to export to mq4. suddenly my EA doesn't work and when I checked from Meta Editor, I found that all string variables value setup will be converted into a weird value which is 1525542307278

      I believe the author of fxdreema doing something (in testing or research purposes?) but forgot to set back everything into working condition.

      pls advice, admin.. 🙂

      posted in Bug Reports
      S
      skytrader
    • RE: I lost all of projects in fxdreema builder

      wow, thanks! now all my projects are back!
      awesome!

      posted in Bug Reports
      S
      skytrader
    • RE: I lost all of projects in fxdreema builder

      thanks admin!
      in the meanwhile, i imported for some of latest projects to continue working on it.

      thanks

      posted in Bug Reports
      S
      skytrader
    • I lost all of projects in fxdreema builder

      today when i login to builder page, I noticed that my projects is lost.
      I have more than 10 projects, n only left 1 project but it's not the latest version.

      I guess the admin update the DB but somehow projects is not reflected the latest version.

      any advice?

      posted in Bug Reports
      S
      skytrader
    • RE: a bug with condition block

      ok. make sense.

      thanks

      posted in Bug Reports
      S
      skytrader
    • a bug with condition block

      i just found a bug with condition block

      here the shared link

      https://fxdreema.com/shared/QogX5gwqb

      posted in Bug Reports
      S
      skytrader
    • modify pending order price

      I'm trying to find out how to modify pending order price?
      the only thing I found is only trailing pending order, but it doesn't work as expected.

      any advise?

      posted in Questions & Answers
      S
      skytrader
    • RE: I Lost my projects

      it solved now. just right click anywhere & choose "Cancel". 🙂

      posted in Bug Reports
      S
      skytrader
    • I Lost my projects

      when I working with my EA then I click menu link Profile > Profile Setting (open new tab) and I update my profile on that page. then I back to my EA builder, and click menu Options > Project Option > Project Option and somehow it triggers infinite loading without any popup appeared.

      and i re-enter the url in address bar https://fxdreema.com/builder to refresh the page. but suddenly I lost my working space there. I try to load project but there's only 1 project with name "unnamed".

      how can I get my EA back? I put a lot of logic there 😞

      posted in Bug Reports
      S
      skytrader
    • RE: EA self terminated

      sorry everyone, now the EA works well 🙂

      posted in Bug Reports
      S
      skytrader
    • RE: EA self terminated

      what is the relevance with my question? 🙂

      posted in Bug Reports
      S
      skytrader
    • EA self terminated

      I just purchased your software. the UI is incredible. but I have problem with the EA after EA compiled.

      almost all the EA i try to build with your software, can't run in backtest because of critical problem. even your sample EA doesn't work in my MT4, they're all stopped with "expert advisor self terminated" 🙂

      ex:

      1. bucker of trades https://fxdreema.com/examples#Bucket-of...

      error in mt4 backtest:

      2017.11.07 08:20:21.395 2017.09.07 23:45:44 rAlgo_rebecca_EA EURUSD,H1: Expert Advisor self terminated

      1. I try to create my simple EA and found problem with OCODriver for out of range, take a look this generated code:

      size = ArraySize(orders1);
      int dbremove = false;
      for (i=0; i<size; i++)
      {
      if (OrderSelect(orders1[i], SELECT_BY_TICKET, MODE_TRADES) == false || OrderType() <= OP_SELL)
      {
      if (OrderSelect(orders2[i], SELECT_BY_TICKET, MODE_TRADES)) {
      if (DeleteOrder(orders2[i],clrWhite))
      {
      dbremove = true;
      }
      }
      else {
      dbremove = true;
      }

           if (dbremove == true)
           {
              ArrayStripKey(orders1, i);
              ArrayStripKey(orders2, i);
           }
        }
      

      }

      the out of range error is at this part:

      if (OrderSelect(orders1[i], SELECT_BY_TICKET, MODE_TRADES) == false || OrderType() <= OP_SELL)

      can you give me 1 working example that really works in real life? I plan to create complex EA but seems it doesn't work even for simple things. cmiiw

      thanks

      posted in Bug Reports
      S
      skytrader
    • 1 / 1