안녕하세요 질문이 하나 있는데요.. 뭐좀 만들어보고 있는데... bull_plot = bull and bull[1] == bull bear_plot = bear and bear[1] == bear 이렇게 만들었는데요 2:00에 true 2:01에 true 이렇게 연속되야만 bull_plot = true 가 나오더라구요 저는 1시 38분에bull = true 2시에 bull = true 한것이 똑같은 true면 알람을 보내도록 하고 싶은데요 예를들면 2시(현재시간)에 bull = true 신호가 떴으면 이전에 시간에 똑같이 bull = true가 연속으로 떠있어야 알람신호가 가게 하고 싶어요 방법이 있을가요..?
선생님 덕분에 전략지표에 도전해 봅니다. 항상 감사를 드립니다. 선생님 강의를 토대로 빠른 Rsi가 느린 RSi를 업다운 하는 전략지표를 아래와 같이 만들고 있습니다만 style 부분에서 에러가 뜨서 진행을 못하고 있습니다. 바쁘시겠지만 선생님의 지도를 부탁드립니다. //@version=5 indicator("Rsi Cross", overlay=true) // 입력받기 fastInput = input.int(25, "fast") slowInput = input.int(100, "slow") //rsi구하기 fastRsi = ta.ris(close, fastInput) slowRsi = ta.ris(close, slowInput) //Up, Down isOver = ta.crossover(fastRsi, slowRsi) isUnder = ta.crossunder(fastRsi, slowRsi) // 화살표 shape을 text와 같이 그린다 plotshape(isOver, text="덤벼~" style = shape.arrowup, location=location.belowbar, size=size.large, color=color.green) plotshape(isUnder,text="도망~" style = shape.arrowdown, location=location.abovebar, size=size.large, color=color.green) //알람생성 if isover alert("덤벼") else if isunder alert("도망"))
2023년 최신 파인스크립트 기본강의가 나왔습니다. 이걸로 배우세요!
ruclips.net/video/sVQc_OmX_c4/видео.html
영상마다 3번씩은 시청하고 있는데 코린이라서 그런지 볼때마다 작은거지만 새로 아는 재미가 쏠쏠합니다^^ 그리고 중간중간에 도강님 아재(?) 개그가 괜히 기다려지는..ㅎㅎ
차트 표시와 알람 어렵게 생각했는데 의외로 간단하네요 유익한 강의 감사합니다
수강완료
추천만이 살길입니다 추천추천
감사,, 압도적 감사,,
감사합니다
감사합니다. 친절한 강의 ^^
10강 잘 봤습니다 감사합니다!!
어라 님 영상 보면서 다 똑같이 따라했는데 왜 글자가 한가지 색으로 나오나요?
그린.레드 지정했는데도 그린으로 다 나오네요
간단한 스크립트를 만들었는데////// 왜 챠트위 트레이드(화살표) = 알람 = 라벨(가즈아) 이 다 같지가 않죠????? 어떻게 해야 같아 질까요?
안녕하세요 질문이 하나 있는데요.. 뭐좀 만들어보고 있는데...
bull_plot = bull and bull[1] == bull
bear_plot = bear and bear[1] == bear
이렇게 만들었는데요 2:00에 true 2:01에 true 이렇게 연속되야만 bull_plot = true 가 나오더라구요
저는 1시 38분에bull = true 2시에 bull = true 한것이 똑같은 true면 알람을 보내도록 하고 싶은데요
예를들면 2시(현재시간)에 bull = true 신호가 떴으면 이전에 시간에 똑같이 bull = true가 연속으로 떠있어야 알람신호가 가게 하고 싶어요
방법이 있을가요..?
글자색깔 어떻게 바꾸나요? 그린 레드로 설정했는데 다 파랑색으로 나오는데..
👍
선생님 혹시 rsi 75,25 과매도, 과매수 구간 들어가면 디스코드로 알람 받는것도 되나요??
선생님 덕분에 전략지표에 도전해 봅니다. 항상 감사를 드립니다. 선생님 강의를 토대로 빠른 Rsi가 느린 RSi를 업다운 하는 전략지표를 아래와 같이 만들고 있습니다만 style 부분에서 에러가 뜨서 진행을 못하고 있습니다. 바쁘시겠지만 선생님의 지도를 부탁드립니다.
//@version=5
indicator("Rsi Cross", overlay=true)
// 입력받기
fastInput = input.int(25, "fast")
slowInput = input.int(100, "slow")
//rsi구하기
fastRsi = ta.ris(close, fastInput)
slowRsi = ta.ris(close, slowInput)
//Up, Down
isOver = ta.crossover(fastRsi, slowRsi)
isUnder = ta.crossunder(fastRsi, slowRsi)
// 화살표 shape을 text와 같이 그린다
plotshape(isOver, text="덤벼~" style = shape.arrowup, location=location.belowbar, size=size.large, color=color.green)
plotshape(isUnder,text="도망~" style = shape.arrowdown, location=location.abovebar, size=size.large, color=color.green)
//알람생성
if isover
alert("덤벼")
else if isunder
alert("도망"))
plot(fastRsi, color=color.white)
plot(slowRsi, color=color.green)
안녕하세요?
지금 스크립트가 오타가 많습니다.
ta.ris가 아니고 ta.rsi이고
"덤벼~"와 style 사이에 ,가 들어가지 않았고
여러가지 키보드 실수가 많은 듯해요!
최종 작동하는 스크립트 올려 드리니 비교해서 고쳐보세요!
//@version=5
indicator("Rsi Cross", overlay=true)
// 입력받기
fastInput = input.int(25, "fast")
slowInput = input.int(100, "slow")
//rsi구하기
fastRsi = ta.rsi(close, fastInput)
slowRsi = ta.rsi(close, slowInput)
//Up, Down
isOver = ta.crossover(fastRsi, slowRsi)
isUnder = ta.crossunder(fastRsi, slowRsi)
// 화살표 shape을 text와 같이 그린다
plotshape(isOver, text="덤벼~", style = shape.arrowup, location=location.belowbar, size=size.large, color=color.green)
plotshape(isUnder,text="도망~", style = shape.arrowdown, location=location.abovebar, size=size.large, color=color.green)
//알람생성
if isOver
alert("덤벼")
else if isUnder
alert("도망")
// plot(fastRsi, color=color.white)
// plot(slowRsi, color=color.green)
@@jangdokang 선생님 바쁜 중에도 답변을 주셔서 감사합니다. 성공하였습니다. 다시 한번더 감사드립니다
27번 에러가 나요 ,, 가즈아부분요~ 왜그러죠?
Syntax error at input end of line without line cont continuation
공백(띄어쓰기)가 제대로 들어갔는지 확인해 보세요!
알람 세팅 화면이 좀 다르네요..
1. codition에 Crossing으로 보이는 탭이 있는데..
2. 프로유저인데도 open-ended도 업그레이드로 나오네요..