Open jerryfane opened 3 years ago
Each technical indicator is normalized in itself. For example; while the RSI varies between [0-100], it is normalized to [-1,1]. The main purpose of this approach is normalizing each indicator to [-1,1]. Rounding to 2-digit decimal is not so important, it could be possible that rounding to 4-digit decimal.
In step 1, you transformed the results of the technical indicators by dividing or multiplying them by some constants and rounding them to 2 decimal places.
In the paper you don't explain the motivation for this, is it an important step to get your results back? Why did you do this rather than leaving the values as they were before?
eg.
resultRSI= Precision.round(((rsiArray[5].getValue(counterRow-1).toDouble()**/50**)-1),2) + ";" + etc.