strategy("두개의 타임프레임")
rsi = ta.rsi(close, 14)
rsi_1d = request.security(syminfo.tickerid, "1D", rsi)
rsi_1h = request.security(syminfo.tickerid, "60", rsi)
plot(rsi_1d, color = color.green)
plot(rsi_1h, color = color.yellow)
//여러개를 한번에 가져오는 것도 가능함.
[rsi_1d, low_1d, high_1d] = request.security(syminfo.tickerid, "1D", [rsi, low, high])
//이렇게 하면 현재 보고있는 티커의 타임프레임의 데이터를 가져온다
[rsi_1d, low_1d, high_1d] = request.security(syminfo.tickerid, timeframe.period, [rsi, low, high])
일봉의 rsi와 60분봉의 rsi를 함께 비교해보고 싶을땐 request.security 를 이용할 수 있다.
aplClose = request.security("AAPL", timeframe.period, close)
plot(aaplClose)
만약 애플티커를 함께 비교하고 싶다면 위와같이 하면된다.
반응형
'파인스크립트' 카테고리의 다른 글
파인스크립트 - 거미줄 주문 방법 (0) | 2024.09.05 |
---|---|
파인스크립트 시간 (백테스팅 시작 날짜 조정하기) (0) | 2024.09.05 |
파인스크립트 strategy.entry의 stop, limit (0) | 2024.09.05 |
파인스크립트 분할 매도 (0) | 2024.09.04 |
라벨그리기 (0) | 2024.09.04 |