Hello))) can anyone get this indie to send a message to the phone?
Attached File(s)
Chaos Creator
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
Dislikedhi everybody i need a script or ea to manage my trade with sl multi tp(at least 3tp) based on rr close partial tp & auto be tp 1 close 50% LOTS & positive be for commissions tp 2 close 20% lots tp 3 let the profit runIgnored
Disliked{quote}...similar with the attached indicator (Forex Entry Point aNRP) to make a MTF version...Ignored
Disliked{quote} Got around to it. Indicator ex4 'Forex Entry Point (aNRP)' has to be in the indicators folder too. {image} {file}Ignored
Disliked{quote} Okay Bro. Breaking the upper band for Crash and lower band for boom is also a good condition. As requested before, kindly create the BUY ONLY, SELL ONLY or BOTH options so I can decide to all only one or both. Please implement the TP and SL I gave BCS in practice the EA shld scalp and leave before it loses what it has gained. Then wait for a new trading condition to be met before opening new trade. Those TP levels are fulfilled 90% of the times in manual tradingIgnored
Disliked{quote} Hola, ¿puedes ayudarme con estos 2 indicadores que no aparecen en el gráfico? En realidad, ni siquiera veo el cuadro de configuración.... muchas gracias {archivo} {archivo}Ignored
Disliked{quote} Got around to it. Indicator ex4 'Forex Entry Point (aNRP)' has to be in the indicators folder too. {image} {file}Ignored
Dislikedhi everybody i need a script or ea to manage my trade with sl multi tp(at least 3tp) based on rr close partial tp & auto be tp 1 close 50% LOTS & positive be for commissions tp 2 close 20% lots tp 3 let the profit runIgnored
// User Input Variables
int sTF1=1;
int sTF2=5;
int sTF3=15;
int sTF4=60;
int sTF5=240;
int sTF6=1440;
int sTF7=15;
int sTF8=30;
int sTF9=60;
// Inside the body of a function block
int TF[9]={sTF1,sTF2,sTF3,sTF4,sTF5,sTF6,sTF7,sTF8,sTF9}; Dislikedint Array Issue Hi coders, hope you can help. I fully understand that the contents of an integer Array must be integer figures, no worry. I intend to have 9 types of TFs and will only need to control on the User Input Variables, any changes on the 9 "int sTF=xx;" by the user will automatically to reflect in the whole EA's TFs, therefore the user will not need to manually change inside the body of the EA's codes. I would like to check with coder is there any coding way to achieve such mission ? Thanks. // User Input Variables int sTF1=1; int sTF2=5;...Ignored
Disliked{quote} I don't know if it works, but try using const in this way: const int sTF1=1; const int sTF2=5; const int sTF3=15; ...Ignored
Disliked{quote} Thanks for your response. Sorry, I don't understand, how to write the "const int sTF1=1 ... " into the array int TF[9]={sTF1,sTF2,sTF3,sTF4,sTF5,sTF6,sTF7,sTF8,sTF9}; ?Ignored
Disliked{quote} Not in the array, I mean here: // User Input Variables const int sTF1=1; const int sTF2=5; const int sTF3=15; ... just try, I don't know if it will workIgnored
Dislikedint Array Issue Hi coders, hope you can help. I fully understand that the contents of an integer Array must be integer figures, no worry. I intend to have 9 types of TFs and will only need to control on the User Input Variables, any changes on the 9 "int sTF=xx;" by the user will automatically to reflect in the whole EA's TFs, therefore the user will not need to manually change inside the body of the EA's codes. I would like to check with coder is there any coding way to achieve such mission ? Thanks. // User Input Variables int sTF1=1; int sTF2=5;...Ignored
// User Input Variables int sTF1=1; int sTF2=5; int sTF3=15; int sTF4=60; int sTF5=240; int sTF6=1440; int sTF7=15; int sTF8=30; int sTF9=60; // Inside the body of a function block int TF[9] TF[0]=sTF1; TF[1]=sTF2; TF[2]=sTF3; TF[3]=sTF4; TF[4]=sTF5; TF[5]=sTF6; TF[6]=sTF7; TF[7]=sTF8; TF[8]=sTF9;
Disliked{quote} Thanks George, means has to be in this way :- // User Input Variables int sTF1=1; int sTF2=5; int sTF3=15; int sTF4=60; int sTF5=240; int sTF6=1440; int sTF7=15; int sTF8=30; int sTF9=60; // Inside the body of a function block int TF[9] TF[0]=sTF1; TF[1]=sTF2; TF[2]=sTF3; TF[3]=sTF4; TF[4]=sTF5; TF[5]=sTF6; TF[6]=sTF7; TF[7]=sTF8; TF[8]=sTF9; This method is only suitable for small sized Arrays, but not suitable for bigger sized Arrays.Ignored
Disliked{quote} Thank you for all your hard work. Please share the indicator in the first line as you have prepared.Ignored