Moving Averages and Bollinger Bands Flashcards

1
Q

Filtering Time Series Types

A

Low-pass filter - removes short-term fluctuations, but leaves the trend.
High-pass filter - removes the trend but keeps the fluctuations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Causal Filters

A

A filter is:
* causal if its output depends only on past and present inputs.
* non-causal if its output also depends on future inputs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Moving Averages (Rolling Average/Mean)

A

Type of digital low-pass filter.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Types of Moving Averages

A

Three types of moving averages:
- simple, where weights are equal.
- weighted, where weights form an arithmetic progression.
- exponential, weights form a geometric progression.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Simple v Exponential

A
  • EMA responds more quickly to prices.
  • EMA takes into account all past data; SMA takes into account only n most recent data points.
  • EMA only needs the most recent EMA value to be kept; SMA requires all n most recent data points to be kept.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Bollinger Bands

A

A standard technical analysis indicator built with a moving average and standard deviation. The bands define “high” and “low” price levels on a continual, relative basis.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Mean Reversion with Bollinger Bands

A

A “mean-reversion” trading strategy uses Bollinger Bands to:
* buys when they suggest the market “oversold”;
* sells when they suggest the market “overbought”.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Overbought/Oversold Strategy

A
  • Long when price is below lower band line
  • Short when price is above upper band line

Attempts to trade corrections when the market has “overshot”.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Simple Moving Average Formula

A

sum(prices) / n
n is the number of periods.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Weighted Moving Average Formula

A

sum(price x weight) / sum(weights)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Exponential Moving Average Formula

A

EMA_t = smoothingFactor x price + (1 - smoothingFactor) x EMA_(t-1)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly