Skip to content

Latest commit

 

History

History
132 lines (97 loc) · 3.66 KB

File metadata and controls

132 lines (97 loc) · 3.66 KB

TECHNICAL ANALYSIS

This menu aims to perform a technical analysis on a pre-loaded ticker chart, and the usage of the following commands along with an example will be exploited below.

OVERLAP

  • ema
    • exponential moving average
  • sma
    • simple moving average
  • vwap
    • volume weighted average price

MOMENTUM

  • cci
    • commodity channel index
  • macd
    • moving average convergence/divergence
  • rsi
    • relative strength index
  • stoch
    • stochastic oscillator

TREND

  • adx
    • average directional movement index
  • aroon
    • aroon indicator

VOLATILITY

VOLUME

  • ad
    • chaikin accumulation/distribution line values
  • obv
    • on balance volume

S/O to https://github.com/twopirllc/pandas-ta Owing to this library, it is fairly easy to add other technical indicators. So, let me know if there's any that you would like. Personally I use mostly these ones, hence why I didn't add more.

OVERLAP

ema

usage: ema [-l N_LENGTH] [-o N_OFFSET]

ema

sma

usage: sma [-l L_LENGTH] [-o N_OFFSET]

sma

vwap

usage: vwap [-o N_OFFSET]

vwap

MOMENTUM

cci

usage: cci [-l N_LENGTH] [-s N_SCALAR] [-o N_OFFSET]

cci

macd

usage: macd [-f N_FAST] [-s N_SLOW] [--signal N_SIGNAL] [-o N_OFFSET]

macd

rsi

usage: rsi [-l N_LENGTH] [-s N_SCALAR] [-d N_DRIFT] [-o N_OFFSET]

rsi

stoch

usage: stoch [-k N_FASTKPERIOD] [-d N_SLOWDPERIOD] [--slowkperiod N_SLOWKPERIOD] [-o N_OFFSET]

stoch

TREND

adx

usage: adx [-l N_LENGTH] [-s N_SCALAR] [-d N_DRIFT] [-o N_OFFSET]

adx

aroon

usage: aroon [-l N_LENGTH] [-s N_SCALAR] [-o N_OFFSET]

aroon

VOLATILITY

bbands

usage: bbands [-h] [-l N_LENGTH] [-s N_STD] [-m S_MAMODE] [-o N_OFFSET]

bbands

VOLUME

ad

usage: ad [-o N_OFFSET] [--open]

ad

obv

usage: obv [-o N_OFFSET]

obv