추세추종(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-2. [트레이딩 전략 구현] 볼린저 밴드 매매 기법 : 추세 추정 매매 기법
지금까지 볼린저 밴드, %b, 밴드폭이라는 지표를 살펴보았다. 이 외에도 실제로 투자를 할 때 참고해야할 여러가지 지표가 존재한다. 이번 장에서는 다른 지표에 대해서도 살펴보고 지표를 참고하여 매매 기법을 구현해보도록 하겠다. 추세 추종(Trading Following) Trend following or trend trading is a trading strategy according to which one should buy an asset when its price trend goes up, and sell when its trend goes down, expecting price movements to continue 출처 : https://en.wikipedia.org/wiki/Trend_foll..
2021.06.13