Hi... this is a decompiled stolen code..
no one should work on this..
Posts made by ask4abusaidu
-
RE: How to fix this mq4 file?posted in Questions & Answers
-
RE: Finding buffer in source code of indicatorposted in Questions & Answers
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 totalif still doesn't work then you have to input the buffers manually
like this
-
RE: stopp loss on previous MA cross over candleposted in Questions & Answers
Hello, any help on this
-
RE: Some modificationsposted in Questions & Answers
Thank you very much for your support

Working better on 5minutes TF
will add more filters to make it perfect
Thanks again -
RE: Some modificationsposted in Questions & Answers

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 -
RE: Some modificationsposted in Questions & Answers
So what will be the entry if to use for buy and sell
-
RE: Some modificationsposted in Questions & Answers
its working now.. only some problems

it will keep opening positions as long as the candle is below itshared/5hy0ms4tc
-
stopp loss on previous MA cross over candleposted in Questions & Answers
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 -
RE: Some modificationsposted in Questions & Answers
@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 -
Some modificationsposted in Questions & Answers
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

here is the link shared
https://fxdreema.com/shared/Cez0EyZQcThanks..
-
RE: successfully created my first ea...based on buy and sellposted in Questions & Answers
Hello sorry for the late response... i did changes the candle id to 1 and it worked perfectly..
Thanks -
RE: EA won't trade after editing custom indi to show signal on candle closeposted in Questions & Answers
Solved.. by inserting "1" in to the candle ID
-
EA won't trade after editing custom indi to show signal on candle closeposted in Questions & Answers
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..
-
RE: successfully created my first ea...based on buy and sellposted in Questions & Answers
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 -
successfully created my first ea...based on buy and sellposted in Questions & Answers
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

