INNER CODE UNIT · Go

wg

aleibovici/cryptopump · main.go:535

		wg := &sync.WaitGroup{} /* WaitGroup to stop inside Channels */
		wg.Add(3)               /* WaitGroup to stop inside Channels */

		go telegram.CheckUpdates( /* Check for Telegram updates */
			configData,
			sessionData,
			wg)

		go algorithms.WsKline( /* Websocket routine to retrieve realtime candle data */
			configData,
			marketData,
			sessionData,
			wg)

		go algorithms.WsUserDataServe( /* Websocket routine to retrieve realtime user data */
			configData,
			sessionData,
			wg)

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…