Watchlist Generator

Get FREE TradingView HERE!

Use this code below to make your own Bookmarklet (instructions in the video above).

If you can help me improve the code, please comment on the video or get in touch via Telegram.

javascript:(function()%7Bvar%20pairing%20%3D%20prompt('What%20pairing%20would%20you%20like%3F%20USD%20%2F%20BTC%20%2F%20ETH'%2C%20'USD')%20%7C%7C%20'USD'%3Bvar%20exchange%20%3D%20prompt('Which%20exchange%20would%20you%20like%3F%20i.e.%20BITFINEX%20or%20leave%20blank'%2C%20'')%20%7C%7C%20''%3B(async%20()%20%3D%3E%20%7Bvar%20tvConfig%20%3D%20%7B%22filter%22%3A%5B%7B%22left%22%3A%22name%22%2C%22operation%22%3A%22nempty%22%7D%2C%7B%22left%22%3A%22volume%22%2C%22operation%22%3A%22egreater%22%2C%22right%22%3A100000%7D%2C%7B%22left%22%3A%22name%2Cdescription%22%2C%22operation%22%3A%22match%22%2C%22right%22%3Apairing%2B%22%24%22%7D%5D%2C%22symbols%22%3A%7B%22query%22%3A%7B%22types%22%3A%5B%5D%7D%2C%22tickers%22%3A%5B%5D%7D%2C%22columns%22%3A%5B%22name%22%2C%22volume%22%2C%22exchange%22%2C%22description%22%2C%22name%22%2C%22subtype%22%5D%2C%22sort%22%3A%7B%22sortBy%22%3A%22market_cap_calc%22%2C%22sortOrder%22%3A%22desc%22%7D%2C%22options%22%3A%7B%22lang%22%3A%22en%22%7D%2C%22range%22%3A%5B0%2C150%5D%7D%3Bif%20(exchange%20!%3D%20'')%20%7B%20tvConfig.filter.push(%7B%22left%22%3A%22exchange%22%2C%22operation%22%3A%22equal%22%2C%22right%22%3Aexchange.toUpperCase().trim()%7D)%3B%20%7Dconst%20rawResponse%20%3D%20await%20fetch('https%3A%2F%2Fscanner.tradingview.com%2Fcrypto%2Fscan'%2C%20%7Bmethod%3A%20'POST'%2Cheaders%3A%20%7B'Accept'%3A%20'text%2Fplain%2C%20*%2F*%3B%20q%3D0.01'%2C'Content-Type'%3A%20'application%2Fx-www-form-urlencoded%3B%20charset%3DUTF-8'%7D%2Cbody%3A%20JSON.stringify(tvConfig)%7D)%3Bconst%20content%20%3D%20await%20rawResponse.json()%3Bvar%20pairsText%20%3D%20%5B%5D%3Bvar%20todayDate%20%3D%20new%20Date().toISOString().slice(0%2C10)%3Bvar%20pairs%3D''%3Bcontent.data.forEach(function(element)%7Bif(element.d%5B0%5D!%3Dpairing)%7BpairsText.push(element.s)%3B%7D%7D)%3Bpairs%20%3D%20pairsText.join('%2C')%3Bvar%20element%20%3D%20document.createElement('a')%3Belement.setAttribute('href'%2C%20'data%3Atext%2Fplain%3Bcharset%3Dutf-8%2C'%20%2B%20encodeURIComponent(pairs))%3Belement.setAttribute('download'%2C%20'Top%20100%20'%20%2B%20exchange%20%2B%20'%20'%20%2B%20pairing%20%2B%20'%20('%20%2B%20todayDate%20%2B%20').txt')%3Belement.style.display%20%3D%20'none'%3Bdocument.body.appendChild(element)%3Belement.click()%3Bdocument.body.removeChild(element)%3B%7D)()%7D)()