Attachments forums

List of attachments posted on this forum.


All files on forums: 161046

Re: Coding Help

Cladi39, Fri Sep 01, 2017 2:55 pm

Dear mladen im trying to call the arrows of this indicator with iCustom function but not luck. What im doing wrong?

Thanks a lot.

double HA(int i)
{
double up = iCustom(NULL,0,"Heiken Ashi Ma T3 new 2",4,i)!=0;
double dn = iCustom(NULL,0,"Heiken Ashi Ma T3 new 2",5,i)!=0;

if(up)
{
return(1);
}
if(dn)
{
return(-1);
}

return(0);
}
All files in topic