Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
provide trading technical indicator values based on data of almost crypto currency exchanges
| Date | Stars |
|---|---|
| 2026-07-24 | 254 |
| 2026-07-25 | 254 |
| 2026-07-28 | 254 |
| 2026-07-30 | 254 |
| 2026-08-06 | 254 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
# trading-indicator
[](https://badge.fury.io/js/trading-indicator)
provide trading technical indicator values based on market data of almost crypto currency exchanges
https://www.npmjs.com/package/trading-indicator
[☕ Give me a coffee :heart:](https://bscscan.com/address/0x9059f758e2d7ab314407cf6ae821b024e538c792)
## Installation
Node.js version 10 or later is required
```bash
npm install --save trading-indicator
```
## Fetch ticker information
- Parameter:
- Exchange name
- Symbol
- IsFuture exchange
```javascript
let ticker = await indicators.ticker("binance", symbol, true)
```
The structure of a ticker is as follows:
```javascript
{
'symbol': string symbol of the market ('BTC/USD', 'ETH/BTC', ...)
'info': { the original non-modified unparsed reply from exchange API },
'timestamp': int (64-bit Unix Timestamp in milliseconds since Epoch 1 Jan 1970)
'datetime': ISO8601 datetime string with milliseconds
'high': float, // highest price
'low': float, // lowest price
'bid': float, // current best bid (buy) price
'bidVolume': float, // current best bid (buy) amount (may be missing or undefined)
'ask': float, // current best ask (sell) price
'askVolume': float, // current best ask (sell) amount (may be missing or undefined)
'vwap': float, // volume weighed average price
'open': float, // opening price
'close': float, // price of last trade (closing price for current period)
'last': float, // same as `close`, duplicated for convenience
'previousClose': float, // closing price for the previous period
'change': float, // absolute change, `last - open`
'percentage': float, // relative change, `(change/open) * 100`
'average': float, // average price, `(last + open) / 2`
'baseVolume': float, // volume of base currency traded for last 24 hours
'quoteVolume': float, // volume of quote currency traded for last 24 hours
}
```
## Available Indicators
- [ADX](https://github.com/thanhnguyennguyen/trading-indicator#adx-average-directional-index)
- [ATR](https://github.com/thanhnguyennguyen/trading-indicator#atr-average-true-range)
- [Bollinger bands](https://github.com/thanhnguyennguyen/trading-indicator/blob/master/README.md#bb-bollinger-bands)
- [CCI](https://github.com/thanhnguyennguyen/trading-indicator/blob/master/README.md#cci)
- [EMA](https://github.com/thanhnguyennguyen/trading-indicator/blob/master/README.md#ema-exponential-moving-average)
- [IchimokuCloud](https://github.com/thanhnguyennguyen/trading-indicator/blob/master/README.md#ichimokucloud)
- [KST](https://github.com/thanhnguyennguyen/trading-indicator/blob/master/README.md#kst)
- [MACD](https://github.com/thanhnguyennguyen/trading-indicator/blob/master/README.md#macd-moving-average-convergence-divergence)
- [MFI](https://github.com/thanhnguyennguyen/trading-indicator/blob/master/README.md#mfi)
- [OBV](https://github.com/thanhnguyennguyen/trading-indicator/blob/master/README.md#obv)
- [RSI](https://github.com/thanhnguyennguyen/trading-indicator/blob/master/README.md#rsi)
- [SMA](https://github.com/thanhnguyennguyen/trading-indicator/blob/master/README.md#sma-simple-moving-average)
- [Stochastic RSI](https://github.com/thanhnguyennguyen/trading-indicator/blob/master/README.md#stochastic-rsi)
- [VWAP](https://github.com/thanhnguyennguyen/trading-indicator/blob/master/README.md#vwap)
- [WMA](https://github.com/thanhnguyennguyen/trading-indicator/blob/master/README.md#wma-weighted-moving-average),
## Available Alerts
- [Golden cross / Death cross](https://github.com/thanhnguyennguyen/trading-indicator/blob/master/README.md#golden-cross--death-cross)
- [KST crossing](https://github.com/thanhnguyennguyen/trading-indicator/blob/master/README.md#kst-crossing)
- [Price crosses SMA/EMA](httpExcerpt of 15,014 characters
Read on GitHubWould you bet a product on this? Bounded 0–100 and slow moving.
matched fp:91d3ee762bab824e, topic:trading