250x250
반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- it
- 블록체인
- GeorgiaTech
- 파이썬
- TOEFL
- 오토사
- 아마존 웹 서비스
- 퀀트
- 토플
- 자동매매
- can
- 확률
- 토플 라이팅
- 백테스트
- Bitcoin
- 개발자
- 백트레이더
- probability
- 비트코인
- 클라우드
- 프로그래밍
- AUTOSAR
- backtrader
- python
- 암호화폐
- toefl writing
- Cloud
- AWS
- 자동차sw
- backtest
Archives
- Today
- Total
Leo's Garage
BackTrader - 추세추종전략 본문
728x90
반응형
추세추종전략 모델을 간단히 만들어보자
SMA(이동평균선)이 교차할 때마다 매수 매도 신호를 준다.
import backtrader as bt
import yfinance as yf
class TrendTrader(bt.Strategy):
params = (
('fast_period', 5),
('slow_period', 20)
)
def __init__(self):
self.fast_sma = bt.indicators.SimpleMovingAverage(self.data.close, period=self.params.fast_period)
self.slow_sma = bt.indicators.SimpleMovingAverage(self.data.close, period=self.params.slow_period)
def next(self):
if self.fast_sma[0] > self.slow_sma[0] and self.fast_sma[-1] < self.slow_sma[-1]:
self.buy()
elif self.fast_sma[0] < self.slow_sma[0] and self.fast_sma[-1] > self.slow_sma[-1]:
self.sell()
cerebro = bt.Cerebro()
data0 = bt.feeds.PandasData(dataname= yf.download('AAPL','2019-01-01','2019-12-31'))
cerebro.adddata(data0)
cerebro.addstrategy(TrendTrader)
cerebro.run()
cerebro.plot()
20일선과 5일선을 사용하였다.
5일선이 20일선을 앞지르면 매수하고, 5일선이 20일선 아래로 가면 매도한다.
2019년도 애플 주식에 적용해보았다.
728x90
반응형
'파이프라인 만들기 > Algo Trading' 카테고리의 다른 글
PineScript5 - 시작하기 (0) | 2023.01.14 |
---|---|
BackTrader - RSI 지표를 이용한 매매 (0) | 2023.01.14 |
BackTrader - 역추세 매매 (0) | 2023.01.14 |
우한 코로나 주가 관련 역추세 매매 백 테스팅 (0) | 2020.01.28 |
우한 코로나에 대한 주가 영향, 과거 데이터로 알아보자 (0) | 2020.01.28 |
Comments