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

504
Views
Configuración del widget NextJS Script TradingView

Mientras transfiero el mejor artículo de stock en mi sitio web de Jekyll a NextJS, no puedo entender cómo pasar la configuración del widget al componente Script incorporado, simplemente no muestra el widget. Aquí está el código:

 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

Intente convertir sus datos en una cadena JSON llamando a 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!