Software Developer and Music Producer
News Fundamentals All Time Return:
1,159.1%
I will code your pivot EAs for no charge 28 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
DislikedHey man, thanks for the hard work, could you do a favor? and put magic number in it, would be nice to test on different time frames...{quote}Ignored
Dislikedim curios why waddah attar scalping works on Forex pairs and crypto but it doesn't this indicator work on stock indexes, oil, or metals. is it referring to pivot points? if it is there a way to make this indicator more universal? maybe by changing it to market statistics instead of pivot points. i also have another project to work on a custom indicator if a coder is interested. i invite you inbox me {file} {file}Ignored
Disliked{quote} If the EA is setup for Forex ( I suspect being a Waddah EA it is very old 2008/20011 therefore it will be setup for Forex ) there is a good chance that on Metals and indexes the points values and digits are not correct. Getting a universal points/digits code to cover everything the Brokers throw at us is virtually impossible or at least I would like to be proved wrong however I have yet to code anything or see any code that works on everything 100%. You could try increasing any TP/SL or Distance code in the inputs by a factor of 10 or 100...Ignored
Dislikedim curios why waddah attar scalping works on Forex pairs and crypto but it doesn't this indicator work on stock indexes, oil, or metals. is it referring to pivot points? if it is there a way to make this indicator more universal? maybe by changing it to market statistics instead of pivot points. i also have another project to work on a custom indicator if a coder is interested. i invite you inbox me {file} {file}Ignored
QuoteDislikedworks on Forex pairs and crypto but it doesn't this indicator work on stock indexes, oil, or metals
Disliked{quote} {quote} - it probably works fine on all instruments - the input names for P1 and P2, really should be named TF1 n TF2 - the strange appearance of the histogram may be due to tf data missing, it's unlikely you have enough 1min history to line up with any higher tf chart, but for the 1m history you do have, it's fine - pic is on the s&p500, I dont have more than a couple days of 1m, default settings then using p1 and p2 as the chart tf, if tf data is present then it's fine {image}Ignored
j=iBarShift(Symbol(),P1,Time[i],false);
[highlight=White] max=iHigh(Symbol(),P1,iHighest(Symbol(),P1,MODE_HIGH,IPeriod,j));[/highlight]
min=iLow(Symbol(),P1,iLowest(Symbol(),P1,MODE_LOW,IPeriod,j));
pivot=(iClose(Symbol(),P1,j+1)+iClose(Symbol(),P1,j+2)+iClose(Symbol(),P1,j+3))/3;
A=(Close[i]-((max + min + pivot)/3))/Point;
j=iBarShift(Symbol(),P2,Time[i],false);
max=iHigh(Symbol(),P2,iHighest(Symbol(),P2,MODE_HIGH,IPeriod,j));
min=iLow(Symbol(),P2,iLowest(Symbol(),P2,MODE_LOW,IPeriod,j));
pivot=(iClose(Symbol(),P2,j+1)+iClose(Symbol(),P2,j+2)+iClose(Symbol(),P2,j+3))/3;
B=(Close[i]-((max + min + pivot)/3))/Point; Disliked{quote} thiis is what i mean how the indicator visualize on the default settings {image} {image}Ignored
Disliked@Every coder - Don't want to act like a boss, cause i'm not, but could we be a little organized in hereCould we make a deal that we said in here "i will take a look at it" or something like that so we're not 3-4 coders trying to fix the same request
Just a suggestion
Thanks!
Ignored
Disliked{quote} Just to show it isn't a "holy grail" This screenshot is RSI 14 on M15 TF with 50 level threshold crosses Blue & Red Arrows and simultaneous showing the M30 Arrows {image} This screenshot is RSI 14 on M30 TF with 50 level threshold crosses White & Orange Arrows and simultaneous showing the M15 Arrows {image} I've made a small indicator showing both M15 & M30 RSI threshold crosses, same way as an EA sees and act ! So what you see with your eyes is not WYSIWYG within the EA algorithm !!! However, the EA version "Double_RSI_Threshold_Cross_EA...Ignored