Quote:
Originally Posted by IN10TION
I'm doing a backtest now only with the RSIFilter, I do use the RSIMixFilter few posts ago in this thread, I published that indicator, and I do get BUYS and SELLS, so the logic to do the orders BUY and SELL are ok, the issue is with your iCustom signals...
|
So this is ok?
double Sg=iCustom(NULL,0,"RSIFilter_v1",5,5,0,1);
if ( Sg>0) Order = SIGNAL_BUY;
if (Sg<0 ) Order = SIGNAL_SELL;