Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

503
Views
NextJS Script TradingView widget configuration

While transferring the best stock article on my website from Jekyll to NextJS I can't figure out how to pass widget configuration to the built-in Script component, it simply doesn't display the widget. Here is the code:

import Script from 'next/script'

export default function StockSnippet({Exchange, Ticker}) {
return <>
    <Script src="https://s3.tradingview.com/external-embedding/embed-widget-mini-symbol-overview.js">               
    {{"symbol": `${Exchange}:${Ticker}`,
        "width": "100%",
        "height": "100%",
        "locale": "en",
        "dateRange": "12M",
        "colorTheme": "light",
        "trendLineColor": "rgba(41, 98, 255, 1)",
        "underLineColor": "rgba(41, 98, 255, 0.3)",
        "underLineBottomColor": "rgba(41, 98, 255, 0)",
        "isTransparent": false,
        "autosize": true,
        "largeChartUrl": ""}}
    </Script>
</>
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Try turning your data into a JSON string by calling JSON.stringify

export default function StockSnippet({ Exchange, Ticker }) {
    const wrapperStyle = {
        width: "100%",
        height: "100%"
    }
    return <>
        <div id="tradingview-wrapper" style={wrapperStyle}>
            <Script
                id="tradingview-widget"
                src="https://s3.tradingview.com/external-embedding/embed-widget-mini-symbol-overview.js"
                onLoad={() => {
                    document.getElementById('tradingview-wrapper').appendChild(document.getElementById('tradingview-widget'));
                }}>
                {JSON.stringify({
                    "symbol": `${Ticker}:${Exchange}`,
                    "width": "100%",
                    "height": "100%",
                    "locale": "en",
                    "dateRange": "12M",
                    "colorTheme": "light",
                    "trendLineColor": "rgba(41, 98, 255, 1)",
                    "underLineColor": "rgba(41, 98, 255, 0.3)",
                    "underLineBottomColor": "rgba(41, 98, 255, 0)",
                    "isTransparent": false,
                    "autosize": true,
                    "largeChartUrl": "",
                })}
            </Script>
        </div>
    </>
}
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!