need someone point tech me.

how from the below function return to call above operate?
like
int start()
{
xxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxx
^
^
^
xxxxxxxxxxxxxxxx
in below here to call above to operate?
thanks
tytianint CheckSignal();
{//functionbody start here
int Signal=0;
if ((iMA(xxxxxxxxx)>iMA(XXXXXXXX)) && (iMA(xxxxxxxxx)<iMA(XXXXXXXX))){Signal=1;}
if ((iMA(xxxxxxxxx)iMA(XXXXXXXX))){Signal=2;}
return(Signal);
}
int start()
{
//your main program body here
Signal=CheckSignal();
}
Good luck
Regards
David
int CheckSignal();
{//functionbody start here
int Signal=0;
if ((iMA(xxxxxxxxx)>iMA(XXXXXXXX)) && (iMA(xxxxxxxxx)<iMA(XXXXXXXX))){Signal=1;}
if ((iMA(xxxxxxxxx)iMA(XXXXXXXX))){Signal=2;}
return(Signal);
}
int start()
{
//your main program body here
Signal=CheckSignal();
}
Good luck
Regards
Davidthank to reply
i mean this...
see the below picture

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
need someone point tech me.
how from the below function return to call above operate?
like
int start()
{
xxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxx
^
^
^
xxxxxxxxxxxxxxxx
in below here to call above to operate?
thanks
tytian