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
//@version=5 indicator("Real Estate Loans (REALLN)") realln = request.security("FRED:REALLN", timeframe.period, close) plot(series=realln)Programming Language: Text