longbui23 / Real-time-Stock-Dashboard

Apache License 2.0
0 stars 0 forks source link

Data Sources #1

Closed longbui23 closed 2 days ago

longbui23 commented 2 days ago

1. Historical Stock Data

2. Technical Indicators

3. Market Data

4. Fundamental Data

5. Macroeconomic Indicators

6. Sentiment Data

7. Event Data

longbui23 commented 2 days ago

Historical Stock Data + Market Data + Fundamental Data + Macro + Events: yFinance package Code: Link Sample: Link

longbui23 commented 2 days ago

Link 1) Exponential Moving Average: EMA = (K × (C - P)) + P

Where:

2) Simple Moving Aaverage: $$ SMA = \frac{\sum_{i=1}^{n} P_i}{n} $$

Where:

Ex: $$ SMA = \frac{20 + 22 + 24 + 25 + 23}{5} = \frac{114}{5} = 22.8 $$

longbui23 commented 2 days ago

RSI

$$ RSI = 100 - \frac{100}{1 + RS} $$

Where:

The standard lookback period is 14, but this can be adjusted.

Interpretation

longbui23 commented 2 days ago

MACD

$$MACD Line = 12-period EMA - 26-period EMA$$

longbui23 commented 2 days ago

Bollinger Bands