Attachments forums

List of attachments posted on this forum.


All files on forums: 136877

Re: XO - Indicators

kyawswarlin, Wed Oct 28, 2020 2:42 am

mntiwana wrote: Thu May 11, 2017 10:22 pm XO clean_mtf + alerts + lines 2
Eternal upgraded - mtf - alerts - lines - user friendly
I use this indicator for Expert advisor.
I call its buffers as follow

Code: Select all

double xxoup = iCustom(NULL,0,"XO clean_mtf + alerts + lines 2",TimeFrame1,0,0);
double xxodn = iCustom(NULL,0,"XO clean_mtf + alerts + lines 2",TimeFrame1,1,0);


if(   xxoup >0 && xxodn == 0 ) return(buy);

if( xxoup == 0 && xxodn < 0  )  return(sell);          
          


But in real running ,it has false signals .I run with 1DAY timeframe in 1HR chart .
In up signal ,all buy and Down signal all sell.
But sell also open in up signals.vise versa.
Why it happen.
Can someone help me.
All files in topic