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
- Host: GitHub
- URL: https://github.com/efe-eroglu/indicators
- Owner: Efe-Eroglu
- Created: 2024-02-27T13:08:42.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-07T19:46:27.000Z (over 2 years ago)
- Last Synced: 2024-11-17T08:39:45.259Z (over 1 year ago)
- Topics: bollinger-bands, candlestick-chart, moving-average, rsi
- Language: Python
- Homepage:
- Size: 1.36 MB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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**