i want to screen stocks with an indicator (for eg ADX indicator) that moves in a range between lets say 13000-14000 value for the last 10 consecutive periods.
i thought the code would look like:
ADX in range
1
2
3
4
5
ADX[14]>13000ANDADX[14]<14000AND
ADX[14][1]>13000ANDADX[14][1]<14000AND
ADX[14][2]>13000ANDADX[14][2]<14000AND
...
ADX[14][9]>13000ANDADX[14][9]<14000AND
is there any shortest way/command to use to achieve my goal?
To help us continually offer you the best experience on ProRealCode, we use cookies. By clicking on "Continue" you are agreeing to our use of them. You can also check our "privacy policy" page for more information.Continue