-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbnb.js
218 lines (127 loc) · 5.34 KB
/
bnb.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
// // const WebSocket = require('ws'); // Import the ws library
// // // const { Web3 } = require("web3");
// // // // // // Replace "YOUR_SYMBOL" with the desired coin pair (e.g., BTCUSDT)
// // // const symbol = "YOUR_SYMBOL";
// // const symbol = "SOL";
// // console.log(symbol);
// // // const ws = new WebSocket("wss://stream.binance.com:9443/ws");
// // const ws = new WebSocket("wss://ws-api.binance.com:443/ws-api/v3");
// // // const ws = new WebSocket("wss://testnet.binance.vision/ws-api/v3/SOL");
// // // const ws = new WebSocket("wss://stream.binance.com:9443/ws/bnbusdt@aggTrade");
// // // const ws = new WebSocket("wss://ws-api.binance.com:443/ws-api/v3?returnRateLimits=false");
// // // const ws = new WebSocket("wss://fstream-auth.binance.com/ws/btcusdt@markPrice?listenKey=XaEAKTsQSRLZAGH9tuIu37plSRsdjmlAVBoNYPUITlTAko1WI22PgmBMpI1rS8Yh");
// // // const ws = new WebSocket("wss://fstream.binance.com/stream?streams=bnb@aggTrade/btc");
// // // const ws = new WebSocket("wss://fstream.binance.com/ws/bnbusdt@aggTrade");
// // // const web3 = new Web3("https://pro-api.coinmarketcap.com/v2/cryptocurrency/quotes/latest?symbol=SOL");
// // ws.onopen = () => {
// // const subscribeMessage = JSON.stringify({
// // method: "SUBSCRIBE",
// // params: [`${symbol}@ticker`],
// // id: 1,
// // });
// // ws.send(subscribeMessage);
// // };
// // ws.onmessage = (event) => {
// // const data = JSON.parse(event.data);
// // if (data.e === "ticker") {
// // const lastPrice = data.p;
// // console.log(`Live price of ${symbol}: ${lastPrice}`);
// // // You can further process the data here (e.g., update a UI element)
// // }
// // };
// // ws.onerror = (error) => {
// // console.error("WebSocket error:", error);
// // };
// // ws.onclose = () => {
// // console.log("WebSocket connection closed");
// // };
// const WebSocket = require('ws');
// // Binance WebSocket endpoint
// const wsEndpoint = 'wss://stream.binance.com:9443/ws/btcusdt@trade';
// // Create a WebSocket instance
// const ws = new WebSocket(wsEndpoint);
// // WebSocket event listeners
// ws.on('open', () => {
// console.log('WebSocket connected to Binance.');
// });
// ws.on('message', (data) => {
// console.log('Received message:', data);
// });
// ws.on('error', (error) => {
// console.error('WebSocket error:', error);
// });
// ws.on('close', () => {
// console.log('WebSocket connection closed.');
// });
const WebSocket = require('ws');
// const axios = require('axios');
const WEBSOCKET_URL = 'wss://stream.binance.com:9443/ws/btcusdt@trade'; // // WebSocket URL for Binance BTC/USDT trades
// const WEBSOCKET_URL = 'wss://cables.coingecko.com/cable'; // // WebSocket URL for Binance BTC/USDT trades
// const WEBSOCKET_URL = 'wss://streamer.cryptocompare.com/v2?api_key={155c6ecbe299e207f8980eafb52b6a20c4806f60d3733bafeb5d3ce8fecfcae2}'; // // WebSocket URL for Binance BTC/USDT trades
// // // // // Function to fetch initial price data using HTTP request
// async function fetchInitialPrice() {
// try {
// const response = await axios.get('https://api.binance.com/api/v3/ticker/price?symbol=BTCUSDT');
// return response.data.price;
// } catch (error) {
// console.error('Error fetching initial price:', error.message);
// return null;
// }
// }
// Function to connect to WebSocket and listen for live price updates
function connectWebSocket() {
const ws = new WebSocket(WEBSOCKET_URL);
ws.on('open', () => {
console.log('WebSocket connection established.');
});
ws.on('message', (data) => {
const tradeData = JSON.parse(data);
console.log('Live Price:', tradeData.p);
console.log("updated");
});
ws.on('error', (error) => {
console.error('WebSocket error:', error.message);
});
ws.on('close', () => {
console.log('WebSocket connection closed.');
});
}
connectWebSocket();
// // // /// Main function to run the test
// async function runTest() {
// const initialPrice = await fetchInitialPrice();
// if (initialPrice !== null) {
// console.log('Initial Price:', initialPrice);
// } else {
// console.log('Test aborted due to initial price fetch failure.');
// }
// }
// /// // // Run the test
// runTest();
// // // // from coin maarketcap
// const axios = require('axios');
// // Function to fetch live BTCUSDT price from CoinMarketCap
// async function getBTCPrice() {
// try {
// const response = await axios.get('https://pro-api.coinmarketcap.com/v1/cryptocurrency/quotes/latest', {
// params: {
// symbol: 'BTC',
// convert: 'USDT',
// },
// headers: {
// 'X-CMC_PRO_API_KEY': '431fee39-93f9-4702-862d-697eb2b5210f', // Replace 'YOUR_API_KEY' with your actual API key
// },
// });
// if (response.data && response.data.data && response.data.data.BTC && response.data.data.BTC.quote && response.data.data.BTC.quote.USDT && response.data.data.BTC.quote.USDT.price) {
// const btcPrice = response.data.data.BTC.quote.USDT.price;
// console.log(`Live BTCUSDT price: $${btcPrice}`);
// } else {
// console.log('Failed to fetch BTC price.');
// }
// } catch (error) {
// console.error('Error fetching BTC price:', error);
// }
// }
// // Call the function to get the live BTCUSDT price
// // getBTCPrice();
// setInterval(getBTCPrice, 10000);