hi metatrader
are you still creating ea's for free if you are i would like a ea of this indicator
are you still creating ea's for free if you are i would like a ea of this indicator
Attached File(s)
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
Disliked{quote} emmy- I'm sorry it did not work. I'm not a big believer in MTF indi's as they repaint. So not something I would be interested in coding.Ignored
DislikedCan anyone help make this MTF indicator auto refresh every pip? My old hands are getting tired from flipping the charts from D1 to W1 so that the indicator will refresh. Thank you for anyone looking into this. {file}Ignored
Disliked{quote} Here you go. This is what I created for my broker (New York time zone, forex trading day starts at 17:00). If your broker is in a different time zone and/or you want to use a different trading day starting time, then you should update the date/time code accordingly. {file}Ignored
Disliked{quote} #1i have some problem with and indicator - what is the problem? #2 i need some modification with this indicator - modification done as shown in your screenshot. {file}Ignored
Disliked{quote} john- Another small mod. Seems to work. If you see the error again then try loading more history and see if that works. {file}Ignored
Dislikedhello sir, i am learning to make one indicator,but too difficult for me to finish it,can you help me?the ideas are follow: name:3 ma adhesive indicator introduction:i want to use 3 moving average ,ma(20)-ma(55)-ma(120),When the 3 MA line entwined, prices in buy-sell cut-off point.To find these areas, and combining with the current price location,dicide to sell or buy.Here are some conditions,follow 1,In the current period(for exaple M5),the recent 10 bars , ma20(i)>ma55(i)>ma120(i)&&ma20(i+1)>ma55(i+1)>ma120(i+1)&&ma20(i+2)>ma55(i+2)>ma120(i+2)&&...&&ma20(i+9)>ma55(i+9)>ma120(i+9);...Ignored
double SMA20_c = iMA(NULL,0,20,0,0,0,i);
double SMA20_p = iMA(NULL,0,20,0,0,0,i+1);
double SMA55_c = iMA(NULL,0,55,0,0,0,i);
double SMA55_p = iMA(NULL,0,55,0,0,0,i+1);
if(SMA20_c > SMA55_c && SMA20_p < SMA55_p){
Draw arrow...
} DislikedDoes anybody have a renko generator EA or indicator, which make the 2. type of renko chart instead of 1.? {image} ThanksIgnored
Disliked{quote} yefujie- I would suggest starting with something small like getting a signal from just one MA cross. Once you have that figured out then you can move on to the rest of it. You're trying to do too much too soon if you have no experience with coding in MT4 or any language. First you need to get a little better organized. double SMA20_c = iMA(NULL,0,20,0,0,0,i); double SMA20_p = iMA(NULL,0,20,0,0,0,i+1); double SMA55_c = iMA(NULL,0,55,0,0,0,i); double SMA55_p = iMA(NULL,0,55,0,0,0,i+1); if(SMA20_c > SMA55_c && SMA20_p < SMA55_p){ Draw arrow......Ignored