반전매매(2)
-
5-2. [트레이딩 전략 구현] 심리투자 법칙 : 삼중창매매시스템
삼중창 매매 시스템(Triple Screen Trading System)은 추세 추종과 역추세 매매법을 함께 사용하여 세 단계의 창을 참조하여 정확한 매수/매도 타이밍을 찾도록 구성되어 있다. 첫번째 창 - 시장 조류 삼중창 매매 시스템에서의 첫 번째 창에서는 추세지표를 통해 시장 조류를 분석한다. 삼중창 매매기법의 코드를 단계적으로 구현해보겠다. import pandas as pd import matplotlib.pyplot as plt from mpl_finance import candlestick_ohlc import matplotlib.dates as mdates from Investar.MarketDB import MarketDB class TripleScreen(): def __init__(s..
2021.06.19 -
4-3. [트레이딩 전략 구현] 볼린저 밴드 매매 기법 : 반전 매매 기법
또다른 트레이딩 전략으로 주식 현황을 보다 앞서서 예측할 수 있는 '반전 매매 기법'을 구현해보자. 반전 매매 기법의 지표 중 하나인 일중 강도(Intraday Intensity)이다. What is the Intraday Intensity Index The Intraday Intensity Index is a volume based technical indicator that integrates volume with a security’s price. Traders can use the Intraday Intensity Index to follow how intraday highs and lows are moving with volume in comparison to the previous day’s ..
2021.06.13