fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. edwardseer
    E
    • Profile
    • Following 0
    • Followers 0
    • Topics 41
    • Posts 138
    • Best 0
    • Controversial 0
    • Groups 0

    edwardseer

    @edwardseer

    0
    Reputation
    1241
    Profile views
    138
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    edwardseer Unfollow Follow

    Latest posts made by edwardseer

    • RE: OnTrade issue

      Forgot to mentioned it is for MT5

      posted in Bug Reports
      E
      edwardseer
    • OnTrade issue

      i keep having this issue with my ea. it works perfectly.fine in strategy tester. but when on live, it will sometimes display this.
      once the array out of range error appear, the ea will stopped.
      how should i resolve this?

      the array out of range is found under the OnTradeDetector() function

      0_1585672735607_0b435c67-2f51-49cd-ba95-0f8be424f742-image.png

      0_1585672774720_547b7ca3-3ff8-495e-a9fe-847d66f75fa9-image.png

      posted in Bug Reports
      E
      edwardseer
    • RE: fxDreema Updating Now

      @TecnoTrader said in fxDreema Updating Now:

      I'm also getting this errors on compiling...
      I know you are working to fix this so..
      thank you in advance
      0_1479280522400_fxDreemaERROR_on_compile.PNG

      having the same issue too

      posted in Questions & Answers
      E
      edwardseer
    • RE: fxDreema Updating Now

      @fxDreema the problem fixed by itself.Thank you.

      the indicator is giving candle close value when it appears so i just used it as such

      posted in Questions & Answers
      E
      edwardseer
    • RE: fxDreema Updating Now

      0_1479210948991_upload-90204cbf-71b0-4fc1-99ab-4accc9929abd
      I got this error when compiling now

      posted in Questions & Answers
      E
      edwardseer
    • RE: Custom block function

      hi, why when i put two divides seperated by a variable it seems to change the middle of them to a constant or something based on the color. have not tested yet.

      http://snag.gy/6fvzG.jpg

      posted in Questions & Answers
      E
      edwardseer
    • RE: Custom indicator suddenly not working

      I suddenly got this error while compiling the EA
      http://snag.gy/0ZJFF.jpg

      posted in Bug Reports
      E
      edwardseer
    • RE: Problem with On Trade MQL5

      there seems to be a problem in the on trade blocks of mql5. the EA always stops when i put the on trade block and it works after i turned it off.
      Also it seems that the money management in the buy sell block also have problems. They keep generating critical error zero divide when enabled.
      those that i tried are risk fixed % of equity, risk fixed amount of money.

      posted in Questions & Answers
      E
      edwardseer
    • RE: Trailing Stop problem

      I extracted the portion of my code that deals with the trail stop in project ID mt4-1063.
      The issue i was having was due to this portion of code in the trailing stop function

            else if ((bs>0 && tp<tplimit) || (bs<0 && tp>tplimit))
            {
               if (USE_VIRTUAL_STOPS) {
                  return(tp);
               }
      
               Print(
                  "Warning: Too short TP requested (",
                  DoubleToStr(tp,digits),
                  " or ",
                  DoubleToStr(MathAbs(tp-askbid)/point,0),
                  " points), minimum will be taken (",
                  DoubleToStr(tplimit,digits),
                  " or ",
                  DoubleToStr(MathAbs(askbid-tplimit)/point,0),
                  " points)"
               );
               tp=tplimit;
               return(tp);
            }
      

      if this is run in live mode, the trail stop function will sometimes change the tplevel i set to the tplimit which is above the tp level i set. i.e, for a buy order, the tp level i set will move up for each incoming new tick that moves less than the min stop level. This sometimes result in the trade unable to close for an otherwise profitable trade.

      Thanks for the explanation on the custom block. i will take a look at it.

      posted in Questions & Answers
      E
      edwardseer
    • RE: Trailing Stop problem

      I think i currently resolved this issue for my purpose by using a custom code to check for the min stop level to not be exceeded by my own tp level before allowing the trailing stop block to run but i would prefer the trailing stop block function to just not do anything if the min stop level is not reached rather than it changing the take profit levels.
      also, is it possible for you to create a breakeven point for group of trades like what you did for each trade?

      posted in Questions & Answers
      E
      edwardseer