Attachments forums

List of attachments posted on this forum.


All files on forums: 135651

iCustom

Cladi39, Fri May 26, 2017 7:34 am

Dear mladen, i try to call this indicator with iCustom but dont work, Can you help me please and tell me what is wrong. Thanks in advance.

double SA(int i)
{
double up = iCustom(NULL,0,"SA",1,i)!=EMPTY_VALUE;
double dn = iCustom(NULL,0,"SA",0,i)!=EMPTY_VALUE;

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

return(0);
}

bool Arrowup(int i)
{
bool up=false;

up = SA(i)==1;

if(up)
{
return true;
}
return false;



}
bool Arrowdn(int i)
{
bool dn=false;

dn = SA(i)==-1;

if(dn)
{
return true;
}
return false;
}
All files in topic