ADXR
Click the file above to Download.
NOTE: For easy import into your charts, save to some where that you will be able to remember, for example your computer's desktop. Be sure to save using .alt as the file extension.
Copy to Clipboard // eurusd 1 min and 10 min local trend = 10000* (SMA[0](close, 14) - SMA[3](close, 14)) /3 IF crossUp(ADXR[0](Close, 14, 14, 14), 20) THEN IF ( trend > 0) THEN AddBuyEntry else AddSellEntry ENDIF ENDIF IF crossDown(ADXR[0](Close, 14, 14, 14), 40) THEN IF ( isBuyPosition()) THEN AddBuyExit ENDIF IF ( isSellPosition()) THEN AddSellExit ENDIF ENDIF
Enlarge Chart