<Ticker/>
Ticker Widget
Grab a horizontal glance at important instrument stats. You can display up to 15 different symbols with their latest price, plus daily change.
Options
Use the TradingView Ticker Widget builder to generate the options for the <Ticker/>
widget and pass into the options
prop.
example
<template>
<Ticker :options="{
colorTheme: 'dark',
symbols: [
{
proName: 'FOREXCOM:SPXUSD',
title: 'S&P 500 Index',
},
{
proName: 'FOREXCOM:NSXUSD',
title: 'US 100 Cash CFD',
},
{
proName: 'FX_IDC:EURUSD',
title: 'EUR to USD',
},
{
proName: 'BITSTAMP:BTCUSD',
title: 'Bitcoin',
},
{
proName: 'BITSTAMP:ETHUSD',
title: 'Ethereum',
},
],
isTransparent: false,
showSymbolLogo: true,
locale: 'en',
}"/>
</template>