An open API service indexing awesome lists of open source software.

https://github.com/efe-eroglu/indicators

Some of the indicators developed to facilitate trading and technical analysis of stocks on the stock exchange
https://github.com/efe-eroglu/indicators

bollinger-bands candlestick-chart moving-average rsi

Last synced: 9 months ago
JSON representation

Some of the indicators developed to facilitate trading and technical analysis of stocks on the stock exchange

Awesome Lists containing this project

README

          

# Indicators
* An indicator is a series of mathematical operations that provide insight into the direction or strength of a trend. In other words, indicators are technical indicators used to predict financial or economic trends by analyzing current market conditions.


# Some of the indicators

**1. RSI (Relative Strength Index)**
```bash
100 - (100 / (1 + RS))
```

**2. MA (Moving Average)**
```bash
SMA = Number of Time Slots / Total Price
```

**3. Bolinger Bands**

```bash
Middle Band = 20-day SMA.
```

```bash
Upper Band = 20-day SMA + (20-day standard deviation x 2)
```

```bash
Lower Band = 20-day SMA - (20-day standard deviation x 2)
```

**4. Ichimoku Cloud**
```bash
Senkouspan is a 26-period translation of A=(Tenkan Sen + Kijun Sen) / 2.
```

**5. MacD**
```bash
MACD = 12 EMA - 26 EMA
```

## Note
* **All codes in this repository are experimental and do not provide any investment advice**