fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. 01PunchMan
    3. Posts
    • Profile
    • Following 1
    • Followers 2
    • Topics 3
    • Posts 26
    • Best 1
    • Controversial 0
    • Groups 0

    Posts made by 01PunchMan

    • RE: Custom Indicator Buffer is Not Trading

      @jstap I am not yet familiar with how to 'get the value into a comment', can you please shed some light on how can I do this? Thank you.

      posted in Bug Reports
      01PunchMan
      01PunchMan
    • RE: Custom Indicator Buffer is Not Trading

      I already posted the Buffer in the screenshot, project's link is also shared, including the indicator's mq5.

      posted in Bug Reports
      01PunchMan
      01PunchMan
    • RE: Custom Indicator Buffer is Not Trading

      @jstap thanks for your response, see that's what I thought I did when I used the Buffer from My Indicator just like what I saw from other examples and YouTube videos. Yet, it did not work, I even used 'Modify Variables' block to store the value of BufferThree and BufferFour and still did not respond.

      posted in Bug Reports
      01PunchMan
      01PunchMan
    • Custom Indicator Buffer is Not Trading

      EA is not placing trades, need your help to know what causes the EA not to trade. I am using the 'MQLTA MT5 Support Resistance Lines' Indicator that draws red horizontal lines for Support and green for Resistance on the MT5 chart, now the horizontal lines correspond with the prices and it is even showing values on the MT5 Data Window as BufferZero to BufferSeven. I posted the source code of the indicator, chart screenshot, and the shared link below for your reference. The idea of this trading strategy is that the EA will only Buy when the Bid price crosses above the price of Support or Red line which is BufferThree and then close the trade when the Ask price reaches the Green line or BufferFour and vice versa for Sell trades, the EA will place sell trade, when the Ask crosses below the price of BufferFour and then close the trades when the bid price hits the BufferThree.

      Simple project shared link: https://fxdreema.com/shared/QntYuwROb
      SupRes DataWindow.jpg

      MT5 Chart screenshot:
      MQLTA MT5 Support Resistance Lines.mq5

      posted in Bug Reports
      01PunchMan
      01PunchMan
    • RE: Wrong Take Profit was Place by the EA

      @l-andorrà I see. Thanks for the tips and help.

      posted in Questions & Answers
      01PunchMan
      01PunchMan
    • RE: Wrong Take Profit was Place by the EA

      @l-andorrà I got the idea. Thank you so much but I am still worried about the wrong take profit that seems to be set as the same numbers showing on StopLevel Specification on Market watch.

      I am wondering if this has something to do with the codes of the EA here on this part.

      // https://book.mql4.com/appendix/limits
      if (type == OP_BUYLIMIT)
      {
      if (ask - op < stoplevel) {op = ask - stoplevel;}
      if (ask - op <= freezelevel) {op = ask - freezelevel - point;}
      }
      else if (type == OP_BUYSTOP)
      {
      if (op - ask < stoplevel) {op = ask + stoplevel;}
      if (op - ask <= freezelevel) {op = ask + freezelevel + point;}
      }
      else if (type == OP_SELLLIMIT)
      {
      if (op - bid < stoplevel) {op = bid + stoplevel;}
      if (op - bid <= freezelevel) {op = bid + freezelevel + point;}
      }
      else if (type == OP_SELLSTOP)
      {
      if (bid - op < stoplevel) {op = bid - stoplevel;}
      if (bid - op < freezelevel) {op = bid - freezelevel - point;}
      }

      	op = NormalizeDouble(op, digits);
      
      	//-- SL and TP ----------------------------------------------------
      	double sl = 0, tp = 0, vsl = 0, vtp = 0;
      
      	sl = AlignStopLoss(symbol, type, op, attrStopLoss(), sll, slp);
      
      	if (sl < 0) {break;}
      
      	tp = AlignTakeProfit(symbol, type, op, attrTakeProfit(), tpl, tpp);
      
      	if (tp < 0) {break;}
      
      	if (USE_VIRTUAL_STOPS)
      	{
      		//-- virtual SL and TP --------------------------------------------
      		vsl = sl;
      		vtp = tp;
      		sl = 0;
      		tp = 0;
      
      		double askbid = ask;
      		if (bs < 0) {askbid = bid;}
      
      		if (vsl > 0 || USE_EMERGENCY_STOPS == "always")
      		{
      			if (EMERGENCY_STOPS_REL > 0 || EMERGENCY_STOPS_ADD > 0)
      			{
      				sl = vsl - EMERGENCY_STOPS_REL*MathAbs(askbid-vsl)*bs;
      
      				if (sl <= 0) {sl = askbid;}
      
      				sl = sl - toDigits(EMERGENCY_STOPS_ADD,symbol)*bs;
      			}
      		}
      
      posted in Questions & Answers
      01PunchMan
      01PunchMan
    • RE: Wrong Take Profit was Place by the EA

      @l-andorrà Thank you for the info Sir. I am a Subscriber of your YT Channel.
      How about the Accelerator Oscillator, is there a way to make the condition set for color like with the Green is for Buy and Red for Sell conditions. Just like this on picture.

      0_1618394901693_a8af4d47-8d55-463f-86e3-37753f3932fc-image.png

      posted in Questions & Answers
      01PunchMan
      01PunchMan
    • RE: Wrong Take Profit was Place by the EA

      @01punchman
      Hi @l-andorrà Thank you for the response. I will check the settings of the Constant and the AO. But I think I figured out that the Take Profit Set by the EA is base on STOP LEVEL.

      For Example on GBPJPY the STOP LEVEL is 60 that's why the TP was set to 60Points:
      0_1618221151450_GBPJPY StopLevel 60 Points.png

      Is there a way I can modify the Take Profit to the Original Settings from the Inputs or maybe to force the STOPLEVEL to change? OR Counter the STOPLEVEL so that the Original TP will be set instead?

      posted in Questions & Answers
      01PunchMan
      01PunchMan
    • RE: Wrong Take Profit was Place by the EA

      Sorry for the late response on my concern. It is due to my hesitation of sharing my strategy to the page to avoid copy but I guess I don't have any choice but for to share and have my concern to be address. I would like to also know what could have been missing or wrong on using Accelerator Oscillator using value with Colors. Thank you for the response.
      Here is the shared web link:
      shared/LkIAvKmrb : https://fxdreema.com/shared/LkIAvKmrb

      posted in Questions & Answers
      01PunchMan
      01PunchMan
    • Wrong Take Profit was Place by the EA

      Hi I would like to inquire how can the Trade Take Profit set to 10 Points was change to different Pips as you can see on the screenshot. My Original Take Profit is set to 1 Pips. I don't have Trailing SL or TP, yet the initial TP was change.

      0_1617248896267_TP is wrong.png

      This is my Input settings on the EA Properties:
      0_1617248949231_c9194bc8-b213-435f-9705-0dad350eea6d-image.png Take Profit is set to 1 Pip Only.

      Please help, thank you all the response.

      posted in Questions & Answers
      01PunchMan
      01PunchMan
    • RE: Wrong/ Invalid Entry - Missed Entry

      @roar Hahaha Thank you for the tips. Let me try to see if that will work.

      posted in Questions & Answers
      01PunchMan
      01PunchMan
    • RE: Wrong/ Invalid Entry - Missed Entry

      @roar Thank you for your response. I will try it again to separate that EMA2 x> 10 and EMA2 x< 10. The reason why it's like this is for me to try a different approach since according to the Condition the Yellow Dot is when the opposite value is valid. 0_1603608708417_5afbb2d9-5e00-43e9-8af0-52bd5d5c7298-image.png
      And I will also use Candle ID 1, which is on More Settings, right?

      posted in Questions & Answers
      01PunchMan
      01PunchMan
    • RE: Wrong/ Invalid Entry - Missed Entry

      @l-andorrà That is so unfortunate. I hope this can be read by the Admin and can also help to figure out what we can do to help fix it. Cause I already tried rebuilding a new Project after I paid and yet still the same. @Admin-0 @admin @adminkw -I am really hoping you can take the time to take a look and help me with this issue. Thank you so much and your effort will be much appreciated.

      posted in Questions & Answers
      01PunchMan
      01PunchMan
    • RE: Wrong/ Invalid Entry - Missed Entry

      @l-andorrà sure Yes, I agree and thank you for that and the same time, that is certainly the problem that I have.

      Here is one example. As you can see I supposed to have Arrow Down for Sell and Arrow Up for Buy, but you can't see any EMA crossover and not even confirmed by MACD, and yet the EA place an invalid trade.
      0_1603473821282_221e214a-2869-4589-8bc4-fe41e51ae63e-image.png

      posted in Questions & Answers
      01PunchMan
      01PunchMan
    • RE: Wrong/ Invalid Entry - Missed Entry

      And Yes it happens to trade well, except for the invalid trades, like there is no such crossover and condition that was met, and yet the EA placed invalid trades.

      posted in Questions & Answers
      01PunchMan
      01PunchMan
    • RE: Wrong/ Invalid Entry - Missed Entry

      I tried it before and still having the same problem. The Skip Tick is just an additional but the issue exist even without it.

      posted in Questions & Answers
      01PunchMan
      01PunchMan
    • RE: Wrong/ Invalid Entry - Missed Entry

      @l-andorrà I did pay today and now I can see the Project and here is my Project Link: https://fxdreema.com/shared/M2Hy0Lydb
      I hope you can help me to fix that bug of the invalid trades, where there is no reason to enter a trade and yet the EA placed an invalid trade.

      posted in Questions & Answers
      01PunchMan
      01PunchMan
    • RE: Wrong/ Invalid Entry - Missed Entry

      No, I found out that it's due to the fact that I am using the free trial. I just paid today and now I can see it already.

      posted in Questions & Answers
      01PunchMan
      01PunchMan
    • RE: Wrong/ Invalid Entry - Missed Entry

      Yes Sir I understand, but as I said, I don't have that Project Menu or even the other menu.

      posted in Questions & Answers
      01PunchMan
      01PunchMan
    • RE: Wrong/ Invalid Entry - Missed Entry

      0_1603210698378_e46b0430-38b5-45f9-a374-9cb7df949ecc-image.png
      This is what I have on my screen.

      posted in Questions & Answers
      01PunchMan
      01PunchMan
    • 1
    • 2
    • 1 / 2