-
[pinescript] 갭하락양봉 찾기기타 2021. 12. 18. 10:19반응형
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © suengDDak //@version=4 study("oveload", overlay=true) // isRfCandle = close[2] > open[2] // 전일 양봉체크 // isRsCandle = close[1] > open[1] // 당일 양봉체크 // isGapdown = close[2] > open[1] // 갭다운 시작 체크 // option = high[2] >= high[1] and close[2] > close[1] and low[2] <= low[1] and high[1] < close // 추가 찾는사항 // if(isRfCandle and isRsCandle and isGapdown and option) // label.new(bar_index, high+(open/20)) // plot(ema(close,60)) isRfCandle = close[1] > open[1] // 전일 양봉체크 isRsCandle = close > open // 당일 양봉체크 isGapdown = close[1] > open // 갭다운 시작 체크 option = high[1] >= high and close[1] > close and low[1] <= low // 추가 찾는사항 if(isRfCandle and isRsCandle and isGapdown and option) label.new(bar_index, high+(open/20)) plot(ema(close,60))
아래코드는 2개봉 확인 위에꺼는 형태이후 하나더 option 추가해서 찾아보는 용도 , 최소거래량 하고, 60일선하고 같이봐보기
'기타' 카테고리의 다른 글
[Redux] devtool option (blacklist, sanitizer) (0) 2022.03.15 [debug] event 디버깅 (0) 2022.01.25 [pinescript] overload (0) 2021.12.17 iframe pre render 가능한가요? (0) 2021.12.17 git stash 로 작업한내용 브랜치 옮기기 (0) 2021.12.16