fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. ask4abusaidu
    3. Posts
    A
    • Profile
    • Following 2
    • Followers 0
    • Topics 4
    • Posts 19
    • Best 1
    • Controversial 0
    • Groups 0

    Posts made by ask4abusaidu

    • RE: How to fix this mq4 file?

      Hi... this is a decompiled stolen code..
      no one should work on this..

      posted in Questions & Answers
      A
      ask4abusaidu
    • RE: Finding buffer in source code of indicator

      your indicator buffers should start like this also

      IndicatorBuffers(5);
      SetIndexBuffer(0,histou);
      SetIndexStyle(0,ShowBars ? DRAW_HISTOGRAM : DRAW_NONE);
      SetIndexBuffer(1,histod);
      SetIndexStyle(1,ShowBars ? DRAW_HISTOGRAM : DRAW_NONE);
      SetIndexBuffer(2,limu);
      SetIndexStyle(2,DRAW_LINE);
      SetIndexBuffer(3,limd);
      SetIndexStyle(3,DRAW_LINE);
      SetIndexBuffer(4,fillu);
      SetIndexStyle(4,DRAW_LINE);

      according to the buffers starting from 0 to 2

      and also replace
      #property indicator_buffers 12
      to
      #property indicator_buffers 3
      since its 3 buffers total

      if still doesn't work then you have to input the buffers manually
      like this

      0_1572733232769_49c1db1e-d3cb-463e-ad19-dc07f3e50f09-image.png

      posted in Questions & Answers
      A
      ask4abusaidu
    • RE: stopp loss on previous MA cross over candle

      Hello, any help on this

      posted in Questions & Answers
      A
      ask4abusaidu
    • RE: Some modifications

      Thank you very much for your support 1_1569840086185_Screenshot (123).png 0_1569840086183_Screenshot (122).png
      Working better on 5minutes TF
      will add more filters to make it perfect
      Thanks again

      posted in Questions & Answers
      A
      ask4abusaidu
    • RE: Some modifications

      @ambrogio
      0_1569828535190_Screenshot (119).png

      Wrong entries kills the EA

      posted in Questions & Answers
      A
      ask4abusaidu
    • RE: Some modifications

      @ambrogio
      How do i solve the wrong entries...
      2_1569827116437_Screenshot (118).png 1_1569827116437_Screenshot (117).png 0_1569827116437_Screenshot (116).png

      posted in Questions & Answers
      A
      ask4abusaidu
    • RE: Some modifications

      now working.. Thanks

      posted in Questions & Answers
      A
      ask4abusaidu
    • RE: Some modifications

      0_1569777684589_Screenshot (112).png

      Still opens sell on a buy signal
      i tried to solve the buffer but still could not
      i think the only thing is to solve the BUFFER

      posted in Questions & Answers
      A
      ask4abusaidu
    • RE: Some modifications

      So what will be the entry if to use for buy and sell

      posted in Questions & Answers
      A
      ask4abusaidu
    • RE: Some modifications

      its working now.. only some problems 0_1569751473813_Screenshot (110).png
      it will keep opening positions as long as the candle is below it

      shared/5hy0ms4tc

      posted in Questions & Answers
      A
      ask4abusaidu
    • stopp loss on previous MA cross over candle

      Hello..
      how can i make stoploss on MA crossover of previous low candle for buy
      and stoploss on MA crossover of previous high candle for sell

      posted in Questions & Answers
      A
      ask4abusaidu
    • RE: Some modifications

      @l-andorrà said in Some modifications:

      Did you check the buffers are correct?

               if (_startTime<=Time[i] && _endTime>=Time[i])
              { 
                  fillu[i]  = max;            
                  filld[i]  = min;
                  histou[i] = EMPTY_VALUE;
                  histod[i] = EMPTY_VALUE; 
      
      During your proper times you don't fill in buffers 0/1.
      
                 if (histoc[i] == 1) { histou[i] = High[i]; histod[i] = Low[i]; }
                  if (histoc[i] ==-1) { histod[i] = High[i]; histou[i] = Low[i]; } 
      
      Outside of those times you do fill in the historgrams (blue or yellow.)
      

      i was told to do some modifications..
      But still not understanding

      posted in Questions & Answers
      A
      ask4abusaidu
    • RE: Some modifications

      Yes i did that.. but still nothing

      posted in Questions & Answers
      A
      ask4abusaidu
    • Some modifications

      Hello,
      creating an EA based on a custom indicator, the problem is that the EA opens a sell order on a buy/sell signal .. need help for some modification.. i believe the problem maybe from the indicator coding, Buffer 0' Blue for buy signal and Buffer 1' Yellow for sell signal 0_1569597334773_Screenshot (103).png 1_1569597258689_Screenshot (99).png 0_1569597258688_Screenshot (98).png

      here is the link shared
      https://fxdreema.com/shared/Cez0EyZQc

      Thanks..

      posted in Questions & Answers
      A
      ask4abusaidu
    • RE: successfully created my first ea...based on buy and sell

      Hello sorry for the late response... i did changes the candle id to 1 and it worked perfectly..
      Thanks

      posted in Questions & Answers
      A
      ask4abusaidu
    • RE: EA won't trade after editing custom indi to show signal on candle close

      Solved.. by inserting "1" in to the candle ID

      posted in Questions & Answers
      A
      ask4abusaidu
    • EA won't trade after editing custom indi to show signal on candle close

      Hello Everyone... my EA opens and close order if the indicator code is
      "for( shift = CountBars-SSP; shift>=0; shift-- )"

      but if the indicator is "for( shift = CountBars-SSP; shift>=1; shift-- )" (to show arrow signal on candle close)... it will not..

      Thanks..

      posted in Questions & Answers
      A
      ask4abusaidu
    • RE: successfully created my first ea...based on buy and sell

      Thanks for your reply... i created the indicator using 'meta editor"
      i have solved the above problem.. by changing the [for( shift = CountBars-SSP; shift>=0; shift-- )] to [for( shift = CountBars-SSP; shift>=1; shift-- )]
      the problem am having now is that it does not open trades after replacing with 1 but works when its 0

      posted in Questions & Answers
      A
      ask4abusaidu
    • successfully created my first ea...based on buy and sell

      successfully created my first ea without any programming skills..
      the only problem i am facing is to set trades to open in next candle after arrow signal appears..
      i don't know if the problem is from the custom indicator..
      example:- a buy signal arrow appears on bullish candle and disappear when the candle becomes bearish... it will keep blinking if the candle goes up and down..
      is there a way to make the ea place trade on candle close after arrow signal

      posted in Questions & Answers
      A
      ask4abusaidu
    • 1 / 1