fxDreema

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

    mywife

    @mywife

    0
    Reputation
    83
    Profile views
    8
    Posts
    0
    Followers
    3
    Following
    Joined Last Online

    mywife Unfollow Follow

    Latest posts made by mywife

    • RE: Terminate EA

      @tipsywisdom I want to thank you for all the support and concern.

      posted in Questions & Answers
      M
      mywife
    • RE: Terminate EA

      @tipsywisdom I think so, better right. Actually can give me sample block to cancel for the trade period, sir. Thank for advice.

      posted in Questions & Answers
      M
      mywife
    • RE: Terminate EA

      @l-andorrà Sorry Sir, I have another request, how can make my breakeven work?

      Here my home work

      0_1653291704111_1.jpg

      I already set breakeven but not move to my setting

      0_1653291772604_2.jpg

      posted in Questions & Answers
      M
      mywife
    • RE: Terminate EA

      @l-andorrà thank you sir. it work. : )

      posted in Questions & Answers
      M
      mywife
    • Terminate EA

      Hello Traders and fxDreema

      how to terminate EA after achieve profit target.
      Can give me sample block.
      TQ

      posted in Questions & Answers
      M
      mywife
    • Fibonacci Retracement

      Hello Coders,
      I'm new here and wanna learn
      I got question and already answer from somebody,
      and here I have a question, how to arrange the block, using Fibonacci Retracement, from lower low to breakout candle? Please
      0_1651325043211_Soalan.jpg

      posted in Questions & Answers
      M
      mywife
    • RE: How to set Engulfing like that, candle id 1 wick engulf candle id 2.. almost try but still fail,,

      @ambrogio I did and try many time but still not same
      .
      .
      I don't know to read this..
      .
      .
      int OnCalculate(const int rates_total,
      const int prev_calculated,
      const datetime& time[],
      const double& open[],
      const double& high[],
      const double& low[],
      const double& close[],
      const long& tick_volume[],
      const long& volume[],
      const int& spread[])
      {
      int limit = rates_total - prev_calculated;
      //--- counting from 0 to rates_total
      ArraySetAsSeries(Buffer1, true);
      //--- initial zero
      if(prev_calculated < 1)
      {
      ArrayInitialize(Buffer1, EMPTY_VALUE);
      }
      else
      limit++;

      //--- main loop
      for(int i = limit-1; i >= 0; i--)
      {
      if (i >= MathMin(5000-1, rates_total-1-50)) continue; //omit some old rates to prevent "Array out of range" or slow calculation

        //Indicator Buffer 1
        if(Low[1+i] > Low[i] //Candlestick Low > Candlestick Low
        && High[1+i] < High[i] //Candlestick High < Candlestick High
        )
          {
           Buffer1[i] = Low[i]; //Set indicator value at Candlestick Low
           if(i == 0 && Time[0] != time_alert) { myAlert("indicator", "Buy"); time_alert = Time[0]; } //Instant alert, only once per bar
          }
        else
          {
           Buffer1[i] = EMPTY_VALUE;
          }
       }
      

      return(rates_total);
      }
      //+------------------------------------------------------------------+

      posted in Questions & Answers
      M
      mywife
    • How to set Engulfing like that, candle id 1 wick engulf candle id 2.. almost try but still fail,,

      2_1651042375481_Screenshot_10.jpg 1_1651042375480_Screenshot_8.jpg 0_1651042375479_Screenshot_6.jpg bolded text

      posted in Questions & Answers
      M
      mywife