I can't explain more if I don't see more...
but you have to follow the basics...
double a=iCustom(indiA);
double b=iCustum(indiB);
double c=iCustom(indiC);
int ORDer=0;
if( a==1 && b>0 && c!=0 ) ORDer=1;
if( a==-1 && b<0 && c!=0 ) ORDer=-1;
if(ORDer==1) BUY();
if(ORDer==-1) SELL();
Quote:
Originally Posted by payback
mmmm please explain more about this
also i tried boolean and if() but at a first look didn't work
|