need help with marti and RR..
TF M1 Pair AUDUSD
TF M1 Pair AUDUSD
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
Dislikedbonjour je ne pense pas que quelqu'un puisse m'aider mais j'essaie quand mme, j ai un probleme avec 2 indicateur ,le premier est une alerte adx qui m'envoie trop d'alerte a la seconde alors qu'une par minute suffirait,c'est adx alert play le segond est une alerte heinken ashi,je voudrais avoir le choix de recevoir des alerte que en sell ou buy par mail,un grand merci si quelqu'un me rend ce service, {file} {file}Ignored
Disliked{quote} Thank you for the solar wind idea!!! I will try to see how it is working. Can I kindly ask you to add an arrow up/down or alert when "0" crossing and bar closing? Kind regards with high respect!!! {file}Ignored
DislikedCan someone tell me what this indicator is called and from where to download it. And if it's not too much trouble installing it. Thanks{image}Ignored
extern string Indy_name = "";
extern int buf_index = 0;
int EA_output0, EA_output1, EA_output2;
int start()
{
EA_output0 = iCustom(NULL,0,"RSI Divergence",14,true,true,true,true,false,3,0);
EA_output1 = iCustom(NULL,0,"RSI Divergence",14,true,true,true,true,false,3,1);
EA_output2 = iCustom(NULL,0,"RSI Divergence",14,true,true,true,true,false,3,2);
Alert(" EA_output2 = ",EA_output2);
Alert(" EA_output1 = ",EA_output1);
Alert(" EA_output0 = ",EA_output0);
return(0);
} DislikedHi guys, please help me how can I get the value from RSI Divergence indi? extern string Indy_name = ""; extern int buf_index = 0; int EA_output0, EA_output1, EA_output2; int start() { EA_output0 = iCustom(NULL,0,"RSI Divergence",14,true,true,true,true,false,3,0); EA_output1 = iCustom(NULL,0,"RSI Divergence",14,true,true,true,true,false,3,1); EA_output2 = iCustom(NULL,0,"RSI Divergence",14,true,true,true,true,false,3,2); Alert(" EA_output2 = ",EA_output2); Alert(" EA_output1 = ",EA_output1); Alert(" EA_output0 = ",EA_output0); return(0); } All output...Ignored
extern string Indy_name = "";
extern int buf_index = 0;
int EA_output0, EA_output1, EA_output2;
int start()
{
EA_output0 = iCustom(NULL,0,"RSI Divergence","",14,"",true,true,true,true,false,3,0);
EA_output1 = iCustom(NULL,0,"RSI Divergence","",14,"",true,true,true,true,false,3,1);
EA_output2 = iCustom(NULL,0,"RSI Divergence","",14,"",true,true,true,true,false,3,2);
Alert(" EA_output2 = ",EA_output2);
Alert(" EA_output1 = ",EA_output1);
Alert(" EA_output0 = ",EA_output0);
return(0);
} Disliked{quote} Try like this : extern string Indy_name = ""; extern int buf_index = 0; int EA_output0, EA_output1, EA_output2; int start() { EA_output0 = iCustom(NULL,0,"RSI Divergence","",14,"",true,true,true,true,false,3,0); EA_output1 = iCustom(NULL,0,"RSI Divergence","",14,"",true,true,true,true,false,3,1); EA_output2 = iCustom(NULL,0,"RSI Divergence","",14,"",true,true,true,true,false,3,2); Alert(" EA_output2 = ",EA_output2); Alert(" EA_output1 = ",EA_output1); Alert(" EA_output0 = ",EA_output0); return(0); }Ignored
extern string Indy_name = "";
extern int buf_index = 0;
int EA_output0, EA_output1, EA_output2;
int start()
{
EA_output0 = iCustom(NULL,0,"Trend Magic",50,5,0,0) ;
EA_output1 = iCustom(NULL,0,"Trend Magic",50,5,0,1) ;
EA_output2 = iCustom(NULL,0,"Trend Magic",50,5,0,2) ;
Alert(" EA_output2 = ",EA_output2);
Alert(" EA_output1 = ",EA_output1);
Alert(" EA_output0 = ",EA_output0);
return(0);
} Disliked{quote} done.... wow, u r really the master brothx a lot ... ups, sorry 1 more question
extern string Indy_name = ""; extern int buf_index = 0; int EA_output0, EA_output1, EA_output2; int start() { EA_output0 = iCustom(NULL,0,"Trend Magic",50,5,0,0) ; EA_output1 = iCustom(NULL,0,"Trend Magic",50,5,0,1) ; EA_output2 = iCustom(NULL,0,"Trend Magic",50,5,0,2) ; Alert(" EA_output2 = ",EA_output2); Alert(" EA_output1 = ",EA_output1); Alert(" EA_output0 = ",EA_output0); return(0); } why the output only 1 and empty value? how to add...
Ignored
Disliked{quote} "TrendMagic" repaints Use CCI 50 instead and check if CCI is > or < from 0 - the signals are going to be exactly the sameIgnored
Disliked{quote} Check the "",14,"" part where only 14 was used in iCustom() calls beforeIgnored
Disliked{quote} "TrendMagic" repaints Use CCI 50 instead and check if CCI is > or < from 0 - the signals are going to be exactly the sameIgnored