Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
tradingview-ws
Advanced tools
Unofficial library to interact with websockets on Tradingview.
import { connect, getCandles } from 'tradingview-ws'
(async function() {
const connection = await connect()
const candles = await getCandles({
connection,
symbols: ['FX:AUDCAD', 'FX:AUDCHF'],
amount: 10_000,
timeframe: 60
})
await connection.close()
console.log(`Candles for AUDCAD:`, candles[0])
console.log(`Candles for AUDCHF:`, candles[1])
}());
connect(options: ConnectionOptions = {}): Promise<TradingviewConnection>
Creates new connection to tradingview websockets. Returns TradingviewConnection
.
Options:
sessionId?: string
- authorize connection if present. Can be received from cookies.getCandles({ connection, symbols, amount, timeframe = 60 }: GetCandlesParams)
Fetches all available candles for symbols. The maximum amount is around 13_000 candles for the hourly timeframe. Returns an array where each element is an array of candles for one symbol in the order it passed to the function.
Options:
connection: TradingviewConnection
- connection objectsymbols: string[]
- array of symbols. Symbol name can be found on Symbol info modal(click three dots after symbol name on the top left corner of the chart).timeframe?: number | '1D' | '1W' | '1M'
- candlestick timeframe, default is 60
amount?: number
- amount of candles to fetch. If not present, it will try to fetch as much as possible.TradingviewConnection
Connection object. Can be used directly to receive and send data to websockets.
Methods:
subscribe: (handler: Subscriber) => Unsubscriber
- subscribe to websockets eventssend: (name: string, params: any[]) => void
- send command to websocketsclose: () => Promise<void>
- close the connection0.0.3
FAQs
Tradingview websocket API
We found that tradingview-ws demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.