OPEN-SOURCE SCRIPT
Aktualisiert

Comparative Relative Strength - HongQuanTrader

672
This script is designed to enhance your trading strategy by comparing the current symbol with another comparative symbol. The goal is to trade a symbol only when its Relative Strength (RS) value surpasses the long moving average of the RS value, ensuring more informed and strategic trading decisions.

Default Mode

In the default mode, the RS value is calculated by simply dividing the base symbol by the comparative symbol:

Pine Script®
RS_SIMPLE = baseSymbol / comparativeSymbol


Period Mode
When you enable the “use period” option, the script uses the RS_PERIOD equation. This mode is particularly useful for comparing multiple symbols against the same comparative symbol, with the output normalized around 1.0 for easier comparison:

Pine Script®
RS_PERIOD = baseSymbol / baseSymbol[rsPeriod] / (comparativeSymbol / comparativeSymbol[rsPeriod])


By leveraging these calculations, you can gain deeper insights into the relative performance of different symbols, allowing you to make more precise and confident trading decisions. Whether you’re comparing stocks, currencies, or any other assets, this script provides a robust framework for enhancing your trading strategy.
Versionshinweise
fix: Do not plot the horizontal line if not using RS_PERIOD method
Versionshinweise
refactor: remove unnecessary code
Versionshinweise
feat: add track line of RS line
Versionshinweise
chore: add title for long and short moving average lines
Versionshinweise
chore: add title for line 1.0 in RS Period mode
Versionshinweise
Update to fix chart rules

Haftungsausschluss

Die Informationen und Veröffentlichungen sind nicht als Finanz-, Anlage-, Handels- oder andere Arten von Ratschlägen oder Empfehlungen gedacht, die von TradingView bereitgestellt oder gebilligt werden, und stellen diese nicht dar. Lesen Sie mehr in den Nutzungsbedingungen.