//@version=4 // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // "$d_webRawe""Software programming & code/PineScript for TradingView market charts/Howell - FVX.P, CBOE 5y T-bond yield divided by 10, PineScript.txt" // www.BillHowell.ca 04Feb2022 // very simple addition of a symbol to a chart!! //********************************** study(title="FVX.P/10,CBOE", overlay=true) /// FVX.P/10,CBOE T-bill yield : is cited at 10 times that actual rate (i.e in tenths of a %) // simply divide by 10 to better compare with other rates // used with : https://www.tradingview.com/chart/ak9KIlIN/ FVX_P = security("CBOE:FVX.P", "", close) FVXP_div10 = FVX_P / 10 plot(FVXP_div10, title="FVX.P/10,CBOE", color=color.red, linewidth=1, style=plot.style_line) // endcode