Lipi Reference Lipi

Variables

syminfo.ticker

The chart instrument's ticker. Every `syminfo` value is simple — fixed for the whole run of the script — and every one defaults to `na` where the property is unknown.

Example


          indicator(title="Ticker Example", overlay=true)
assetTicker = syminfo.ticker
plotColor = assetTicker == "US:SPOT:AAPL" ? color.green : assetTicker == "US:SPOT:TSLA" ? color.red : color.blue
plot(close, title="Price", color=plotColor)
        

Type

simple string