Hello! I am new to programming. Can someone help me? I have read S kovalyov's MQL4 teaching book but I don't know how to continue. Any help appriciated!
Seize your trading!
I will code your scalping EAs for no charge 81 replies
Need help to code EAs for MT4 and MT5 6 replies
I will code your pivot EAs for no charge 20 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
DislikedCould someone please help me in fixing this error. Thanks in advance. {image} {file}Ignored
Dislikedhi all i am facing problem. any one please help me please please .... i added this indicator for crude oil and copper it was run good but when i tried to open nifty chart and when i apply this template it gets struck. and i am getting this pic image.. and saying not responding.. many times i closed and reopened it strucks here. when i try to do close this charts i opened c >program files > gci mt4 > there i find templates but i didnt seen this particular template. because i attached this template via gciterminal > file > open datafolder > mql4 >...Ignored
DislikedI've tried to search but can't find anything on an RSI alert that alerts you when it crosses the 50 line. Can anyone help me please???Ignored
Disliked{quote} snap shot attach that full error or what says upto last lineIgnored
Disliked{quote} You will still have some overlay issues as the signals come at different times for different timeframes so a lot depends on the high/low value at the time the signal is activated. I have had to write a line for arrow shift into the SMA CrossOver_Justin_Arrows so I can access the arrow shift using the iCustom code. I have also added in inputs for arrow types/arrow size and arrow colour to make the indicator more user friendly. NOTE: Both indicators must be in your indicator folder. {file} {file} This screenshot shows arrows for M15/M30/H1/H4...Ignored
PRICES FALLING
The THREE-BAR NET LINE is a HORIZONTAL LINE extending RIGHT from Bar 3 HIGHS
The TREND is DOWN until PRICE CLOSES ABOVE the current THREE-BAR LINE
I have the codes in AFL/Amibroker but I am not a coder so i do not have a clue as to how to convert it into mt4.
Kind regards.
THREE LINE NET BAR - Joseph Stowell
_SECTION_BEGIN("Three Line Net Bar");
NetBarPeriod = Param("3Line Net Bar Period",13,5,30,1);
function ThreeLineUp()
{
H2[0] = result[0] = 0;
for (i = 10; i < BarCount; i++)
{
for (j = 1; j < i; j++) if((H[i-j]>H[i])) {H2[i] = H[i-j]; break;}
for (j = 1; j < i; j++) if((H[i-j]>H2[i])) {result[i] = H[i-j]; break;}
}
return result;
}
function ThreeLineDn()
{
L2[0] = result[0] = 0;
for (i = 10; i < BarCount; i++)
{
for (j = 1; j < i; j++) if((L[i-j]<L[i])) {L2[i] = L[i-j]; break;}
for (j = 1; j < i; j++) if((L[i-j]<L2[i])) {result[i] = L[i-j]; break;}
}
return result;
}
LineDn = ValueWhen(H==HHV(H,NetBarPeriod),ThreeLineDn(),1);
LineUp = ValueWhen(L==LLV(L,NetBarPeriod),ThreeLineUp(),1);
Hlv = IIf(C>LineDn,1,IIf(C<LineUp,-1,0));
Hlv = ValueWhen(Hlv!=0,Hlv,1);
ThreeLineNetBar = IIf(Hlv==1,LineDn,LineUp);
_SECTION_END();
Dislikedwhat's up guys . i just read a article @ forex factory about maximal curves & using them for s/l . is anyone here who can write a code for any chart+time frame ? here s the orginal idea : http://forexop.com/strategy/stop-los...s-max-returns/ i know it's not that hard to write in MATLAB but got not clue about mql & .. plus there's a commercial indicator out there , perhaps reverse engineering helpsIgnored
DislikedHi, Can somebody compile .mq4 to be .ex4? I can't compile them Thanks in advance{file}{file}{file}{file}Ignored