hi all
anyone knows a mtf barros swing indicator that works in the latest build of mt4
anyone knows a mtf barros swing indicator that works in the latest build of mt4
I will code your pivot EAs for no charge 24 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
DislikedWould anybody who can code make an EA based non TRENDSIGNAL V2? {file}Ignored
Disliked{quote} did you trade it already successful? It seems the signal is printed backwards 2 or more candlesIgnored
DislikedHey Guys, i want to learn and improve my MQL4 skills. I think the best way to do this is to practice. Unfortunately sometimes I don`t have any nice idea which i can implement in a Expert Advisor / Indicator. So if any of you is interested, please post in this forum your ideas and i will try to implement it into mql4. AndiIgnored
Disliked{quote} cyber1 Thanx for the help, it works now. I see you changed the following from int counted_bars=IndicatorCounted(); int limit =Bars-counted_bars-1; for(int i = 0;i<limit;i++){ to the new int counted_bars=0; if(counted_bars>0) counted_bars--; int limit=Bars-counted_bars-1; Comment(limit); for(int i = 0;i<limit;i++){ The only thing I'm really clear about is the Comment and the "for" to increment, but the rest ..... What I understand is you define counted_bars to 0, but why not IndicatorCounted()? In the next line do you use "counted_bars--"...Ignored
QuoteDislikedWould you mind explaining this to me as this section in code is a part I'm not to clued up about, (well most of the stuff as I'm still learning ), or if you can give me some keywords to search for, cause I'm not sure where to look for it. I've also just used what is in the templates. I have a few indies I need to call but some start with int=0 and others int=1, is not just gonna be better to make all start with 1, at least then you know it's not repainting also?
Dislikedjust hoping for a quick adjust... Im using this strength meter and as you can see in the pic -- the two boxers are overlapping a bit and the box on the right isnt big enough to show the readings... I looked in the mgl file but -- ummmmmm ... So was hoping someone in here could help out.. thanks in advance.. {image} {file}Ignored
Disliked{quote} fbrand79- http://forum.mql4.com/19872 https://www.google.com/search?as_q=%...F-8&gws_rd=ssl {quote} Most repainting indicators will not repaint past the open candle when its closed the line stays as plotted. For example, anything TMA will repaint long after the current candle has closed. In this case the only difference is i=1 will not plot the current open candle. To see this put both indicators on the chart and set one to 35 period.Ignored
if(i==1 && SoundAlert)Alert(_Symbol, _Period," Sell Alert"); or if(i==0 && SoundAlert)Alert(_Symbol, _Period," Sell Alert"); .... i = 0 in the for loop