fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. meky55
    3. Posts
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 7
    • Posts 18
    • Best 0
    • Controversial 1
    • Groups 0

    Posts made by meky55

    • RE: You can't download your EA Like me? do you know there is a desktop software of FXdreema?

      @attila1492

      Hi, I also have Norton and I get the same but I reinstalled it on VMware to keep my system clean if there is a real virus on FXdreema Software, I am also user like you and I don't know why the Admin didn't fix the Web download problem and why Norton say there is a virus in their software.

      Regards

      posted in Questions & Answers
      M
      meky55
    • RE: You can't download your EA Like me? do you know there is a desktop software of FXdreema?

      @mohammad2232

      Hi, but it's working with me, I already used it yesterday and today, after install all what you need is to inter the MT4 or MT5 path then you can export the EA.

      This is a direct link, I just tried now and working 100% : https://fxdreema.com/index/desktop/download/fxdreema_install_build_100.exe

      Regards

      posted in Questions & Answers
      M
      meky55
    • You can't download your EA Like me? do you know there is a desktop software of FXdreema?

      Hi all,

      as you know we have a download problem, but I found many users did't know that there is a desktop software of this site you can use it, it's 100% the same of the online builder, for more info and the download link please check this link: https://fxdreema.com/desktop

      Regards

      posted in Questions & Answers
      M
      meky55
    • RE: can't download the MT5 files of the program

      Today, I could't download for MT4, Maybe there is a problem in the website?

      posted in Questions & Answers
      M
      meky55
    • The builder not working what should I do?

      Hi,

      The web builder not working today, any ideas?

      Regards
      0_1503584240079_Capture.PNG

      posted in Questions & Answers
      M
      meky55
    • RE: How I can start use a multi time frame EA created with FXDreema? is it sample just put it on one chart or?

      @keanzoe

      Hi,

      I mean my EA must use zigzag Informations from 15 min and 30 min chart, I did it like this, now mt4 backtest not supporting EA which need data from multi charts so I need to test it on demo account, but how? Put the ea on one chart and he collect data automatically from other time frame? Or I should put it on many charts?

      Regards

      posted in Questions & Answers
      M
      meky55
    • How I can start use a multi time frame EA created with FXDreema? is it sample just put it on one chart or?

      Hi all,

      anybody know how to start use MTF EA? I found on google that its depend on the ea coding, some you can use it on one chart and some not, my ea is simple use zigzag and 2 from the options are to check other time frame.
      If the answer is to use multi charts I need to put the ea on each chart with the same Magic for each pair?

      Regards

      posted in Questions & Answers
      M
      meky55
    • RE: Problem with zigzag

      Hi,

      I didn't understand your Idea, but now you miss a condition to buy, the EA now understand there are 2 candles after zigzag and then? you can add for example candle 1 closed higher than candle 2.

      here the ea will wait:

      1- zigzag low fallowed with 2 candles above of the low
      2- if the second candle after zigzag ( ID 1 ) closed above candle 2

      buy now

      posted in Questions & Answers
      M
      meky55
    • RE: Problem with zigzag

      Sorry there is a mistake, lowest price and not highest

      posted in Questions & Answers
      M
      meky55
    • RE: Problem with zigzag

      ![alt text](0_1502836591677_Capture.PNG image url)

      posted in Questions & Answers
      M
      meky55
    • RE: Problem with zigzag

      hi, I also work on Zigzag, you can try:

      zigzag low 0 smaller than lowest price ( candle bla bla) candle id = 2

      the ea will search for last Zz Low which has 2 candles above it,

      then you can continu your conditions

      with me ( zigzag visible or zigzag appear never worked, candle id on zigzag mean the candles after zigzag).

      posted in Questions & Answers
      M
      meky55
    • RE: How to do ((if Zigzag high 0 bigger than Bollinger Bands)) without candle ID?

      Thanks Admin for the answer, you really did very good job with ZigZag, many options are available and I already did good with it, now I have only this problem that how to tell the EA zigzag bigger than BB on the LAST ZIGZAG HIGH\LOW Candle, I really liked FXdreema because offering a professional Zigzag options.

      Regards

      posted in Questions & Answers
      M
      meky55
    • How to do ((if Zigzag high 0 bigger than Bollinger Bands)) without candle ID?

      Hi,

      Can anybody tell me please how to do (( if Zigzag high 0 bigger than Bollinger Bands))? when I do it it's do the last ZZ High with BB on candle 0, as you know I can't give exact candle ID with zigzag, any ideas?

      Regards

      posted in Questions & Answers
      M
      meky55
    • I really need help, How to make Break Even work on Bid if buy and on Ask if sell?

      Hi,

      Please any body tell me how to make Break Even work on Bid if buy and on Ask for sell?

      Original code:
      void block35(int parent=0)
      {
      if (disabled[35] || FXD_BREAK) {return;}
      FXD_CURRENT_FUNCTION_ID=35;

      static string OnProfitMode = "fixed";
      double OnProfitPips = _externs::inp36_OnProfitPips;
      double OnProfitPercentSL = 50;
      double OnProfitPercentTP = 50;
      static string BEoffsetMode = "pips";
      double BEPoffsetPips = _externs::inp36_BEPoffsetPips;
      static string OrdersScope = "group";
      static string OrdersGroup = "";
      static string SymbolScope = "symbol";
      static string SYMBOL; SYMBOL = CurrentSymbol();
      static string BuysOrSells = "both";
      
      
      for (int pos=OrdersTotal()-1; pos>=0; pos--)
      {
      	if (!OrderSelect(pos,SELECT_BY_POS,MODE_TRADES)) {continue;}
      
      	if (!FilterOrderBy(OrdersScope,OrdersGroup, SymbolScope,SYMBOL, BuysOrSells)) {continue;}
      	
      	double PipsToSet=0;
      	SetSymbol(attrSymbol());
      	
      	if (OnProfitMode=="fixed")          {PipsToSet = OnProfitPips;}
      	else if (OnProfitMode=="percentSL") {PipsToSet = toPips(MathAbs(attrOpenPrice()-attrStopLoss()))*OnProfitPercentSL/100;}
      	else if (OnProfitMode=="percentTP") {PipsToSet = toPips(MathAbs(attrOpenPrice()-attrTakeProfit()))*OnProfitPercentTP/100;}
               
      	if (
      		(attrType()==OP_BUY && (SymbolAsk()-attrOpenPrice() > toDigits(PipsToSet)) && (attrStopLoss() < attrOpenPrice()))
      		||
      		(attrType()==OP_SELL && (attrOpenPrice()-SymbolBid() > toDigits(PipsToSet)) && ((attrStopLoss() > attrOpenPrice()) || attrStopLoss()==0))
      		)
      	{
      		double be_offset=0;
      		if (BEoffsetMode=="pips") {
      			be_offset=toDigits(BEPoffsetPips);
      			if (attrType()==OP_SELL ) {be_offset=be_offset*(-1);}
      		}
      		ModifyStops(attrTicket(),attrOpenPrice()+be_offset,attrTakeProfit());
      	}
      }
      

      Regards

      posted in Questions & Answers
      M
      meky55
    • My Break Even not calculate the Spread, How can I fix this?

      Hi all,

      How can I make the Break even work on net Profit? for example I want net profit 1 pip and if I do the BE Pips on Profit = 1.1 / Break even point offset = 1 it will be 1 pip - Spread and Commissions.

      I tried to play with the both numbers but in the end the same results.

      Regards

      posted in Questions & Answers
      M
      meky55
    • RE: Multiple trades are created one after another?

      @Cgammons01

      I did it, but in zigzag for example it will open trade every new bar, I fixed it with ( if no trade/order) but this made another Problem for me in after trade conditions.

      Regards

      posted in Questions & Answers
      M
      meky55
    • RE: Multiple trades are created one after another?

      I have the same Problem, I need one trade per condition but I don't know how to do it 😞

      posted in Questions & Answers
      M
      meky55
    • 1 / 1