summaryrefslogtreecommitdiff
path: root/Finance/Fundamentals/Technical_analysis.md
blob: 9ff332717c4a419c5a0162c09b4166c8749490fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Return Formula

R(n) = (CP(n) - OP(n)) / OP(n)

Where:
	- R(n) = Return in period n
	- CP(n) = Close price
	- OP(n) = Open price

# Rainbow logic

uptrend = 8 EMA(exponential ma) > 21 EMA > 34 EMA > 50 SMA(simple ma) > 100 SMA > 200 SMA
downtrend = 8 EMA < 21 EMA < 34 EMA < 50 SMA < 100 SMA < 200 SMA
	red, orange ,yellow, green, blue, mauve


Sahm Rule = looking at the slope of an average


sankey diagram for income statement

# Average True Range
- ATR tells us of opportunities within a particular day but also whether Vol as ben increasing or decreasing
- ATR = the average of x true range values 
  
TR(x) = (High-Low)(x)

ATR(x) = (TR + TR [...] - x) / open - x                  ***** REVIEW