uniswapdexcandles
v0.0.2
Published
![Dexi](https://i.ibb.co/ZBk2v0b/dexi.png)
Downloads
7
Maintainers
Readme
Candles Uniswap V2 Pairs DEX FREE
With this module, you can retrieve JSON data regarding the trading pairs created on Uniswap. It allows you to obtain OHLC (Open, High, Low, Close) candlestick data for intervals of 12 hours and any other timeframes you desire. This data will prove invaluable for creating charts and visualizations using libraries like TradingView and other similar resources.
Installation
Install using npm:
npm install uniswapdexcandles --save
Usage
Require library
import { getUniswapCandles } from 'uniswapdexcandles'
/**
* Parameters
* A => token_main example ( mytoken address) or ( 0x8390a1da07e376ef7add4be859ba74fb83aa02d5 )
* B => token_pair example (WETH) or (ETH) or (USDT) ( 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 )
* C => time => default 720
*/
/**
* 1440 => 24 hours => recommended
* 720 => 12 hours => recommended
* 120 => 2 hour => recommended
* 60 => 1 hour => recommended
* 15 => 15 minute
* 5 => 5 minute
* 1 => 1 minute
*/
(async () => {
const result = await getUniswapCandles('0x8390a1da07e376ef7add4be859ba74fb83aa02d5',
'0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2', '720');
console.log(result);
})();