Hi All!
I Built RSI EMA indicator, that close to OEC, but not 100%. Something wrong in code.
----------
inputs: PriceValue(NumericSeries),Len(NumericSimple);
variables: AU( 0 ), AD( 0 );
AU = XAverage( IFF( PriceValue > PriceValue[1], PriceValue - PriceValue[1], 0 ), Len ) ;
AD...