1 October 2023

This snippet shows how you can show any symbol as indicator in Pine Script. This is a starting point, from here you can continue and modify the result.

Source code viewer
  1. //@version=5
  2. indicator("Real Estate Loans (REALLN)")
  3. realln = request.security("FRED:REALLN", timeframe.period, close)
  4. plot(series=realln)
Programming Language: Text