커뮤니티

예스랭귀지 Q&A

글쓰기
답변완료

수식 문의드립니다.

다음과 같은 수식을 작성하고 싶습니다. 저항1과 저항2라는 저항선이 있습니다. 저항2가 저항1보다 높습니다. * 가격이 저항2를 상향돌파해서 저항1과 저항2의 갭(변수처리)만큼 상승하면 매도 진입합니다. * 가격이 내려와서 저항2에 도달하면 청산합니다. (당일청산, 변수처리) * 당일청산일 경우와는 별도로 익일이나 그 이후로 오버된 경우에는 저항1과 저항2의 갭의 1/2에 도달하면 청산합니다. (변수처리) * 손절은 진입가에서 저항2과 저항2의 갭보다 2배 이상 손실이면 손절합니다. (변수처리) 다음과 같은 몇가지 조건이 있습니다. 1. 당일에 진입하여 당일에 청산한 경우 재진입하지 않습니다. 2. 전일 또는 그 이전에 진입하여 청산된 경우에는 위의 조건에 해당하면 진입합니다. 3. 매수에 대해서는 위와는 정확히 반대로 동작합니다. 감사합니다. 아래 댓글에도 적었지만 여기에 다시 적습니다. 참고로 저항1과 저항 2는 매일 바뀌는 값입니다. 전일 고가, 저가, 시가, 종가 등을 고려하여 계산됩니다. 따라서 다음날로 오버되었을 경우에는 저항1 또는 저항2가 바뀌어 있어서.... 당일 저항1, 저항2로 청산을 하면 안되고 진입한 날의 저항1, 저항2를 참고해야합니다. 청산가격 정할 때 고려되어야하는 사항입니다.
프로필 이미지
강장군
2024-08-19
744
글번호 182615
시스템
답변완료

수식 문의 드립니다.

안녕하세요 파라볼릭 sar 지표 수식 부탁드립니다
프로필 이미지
부활
2024-08-19
818
글번호 182611
지표
답변완료

검색식 부탁 드려요

** 26일앞(캔들 현재봉 포함) 선행스팬2 보다 선행스팬1 이 위에 있는 종목중 (일목균형 붉은구름-정배열) 1. 이미(수일-몇주전에) 골든크로스가 나서 붉은 구름을 형성하고 있는 종목 을 검색하고자 합니다. 보내주신검색식은 1번과 같은 종목이 누락 됩니다.-검토부탁드립니다 (*다른 검색방법이 없는지요?) var : 전환선(0),기준선(0),선행스팬1(0),선행스팬2(0); 전환선 = (highest(H,9)+lowest(L,9))/2; 기준선 = (highest(H,26)+lowest(L,26))/2; 선행스팬1 = (전환선+기준선)/2; 선행스팬2 = (highest(H,52)+lowest(L,52))/2; if 선행스팬1 > 선행스팬2 Then Find(1);.
프로필 이미지
일지매7
2024-08-19
791
글번호 182610
종목검색

살빼고싶다 님에 의해서 삭제되었습니다.

프로필 이미지
살빼고싶다
2024-08-19
178
글번호 182607
검색
답변완료

수식 문의드립니다

안녕하세요 수식 문의드립니다(3분봉 기준) 0.매수진입시점: 골든크로스(정배열), 양봉이 5일선을 터치, 그 양봉의 종가진입 0.매도진입시점: 데드크로스(역배열), 음봉이 5일선을 터치, 그 음봉의 종가진입 0 매수 강제청산: 현재봉을 포함하여 20봉중 최저가격보다 5틱 이하시 청산 0.매도 강제청산: 현재봉을 포함하여 20봉중 최고가격보다 5틱 이하시 청산 0.손절: 진입가격대비 -100틱 청산 0.익절: 진입가격대비 +150틱 청산
프로필 이미지
고목리
2024-08-19
665
글번호 182605
시스템
답변완료

안녕하세요 수식 좀 문의드립니다.

안녕하세요 수식 좀 문의 드립니다. 아래 코드에서 print문으로 엑셀에 데이터를 저장하고 있는데요 주로 실시간에서.. 차트는 5분봉으로 되어 있는데 5분마다 데이터가 들어오는게 아니고 불규칙적으로 데이터가 들어오는데 봉이 완성되는 5분마다만 데이터를 받게 수정할수 있을까요? var : var11(0),var12(0),var13(0),var14(0),var15(0),var1(0),var2(0); var : var21(0),var22(0),var23(0),var24(0),var25(0); var : var31(0),var32(0),var33(0),var34(0),var35(0),var36(0); input : StartDate(20240702),EndDate(20240814); input : StartTime(090000),EndTime(150000); var : Tcond(false); if (sdate != sdate[1] and stime >= StartTime) or (sdate == sdate[1] and stime >= StartTime and stime[1] < StartTime) Then { Tcond = true; } if (sdate != sdate[1] and stime >= EndTime) or (sdate == sdate[1] and stime >= EndTime and stime[1] < EndTime) Then { Tcond = False; } if sDate >= StartDate and sDate <= EndDate and Tcond == true Then { var11 = Data2(c); var12 = Data3(c); var13 = Data4(c); var14 = Data5(c); var21 = Data6(c); var22 = Data7(c); var23 = Data8(c); var24 = Asks; var25 = Bids; var31 = Upvol; var32 = DownVol; var33 = openinterest; var34 = var33[1]-var33 ; if (abs(Var21[1]-Var21)) < 50000 Then var15 =(Var21[1]-Var21); Else var15 =0; var2= var11-Var32; var1= var13-Var31; #print("c:₩win₩data.csv",",날짜,%f,,시간,%f,,시,%.2f,,고,%.2f,,저,%.2f,,종,%.2f,,거래량,%f,,미결제,%f,,비차익,%f,,매수수량,%2f,,매수건수,%.f,,매도수량,%.f,,매도건수,%.f,,매도총건수,%.f,,매수총건수,%.f,,매도총수량,%.f,,매수총건수,%.f,,상승체결,%.f,,하락체결,%.f",sDate,sTime,O,H,L,C,V,var34,var15,var11,var12,var13,var14,var22,var23,var24,var25,var31,var32); print("c:₩win₩data.csv",",거래량,%f,시,%.2f,고,%.2f,저,%.2f,종,%.2f,미결제,%f,비차익,%f,매수수량,%2f,매수건수,%.f,매도수량,%.f,매도건수,%.f,매도총건수,%.f,매수총건수,%.f,매도총수량,%.f,매수총건수,%.f,상승체결,%.f,하락체결,%.f,상승건수,%.f,하락건수,%.f,체결건수,%.f,상승제외,%.f,하락제외,%.f,",V,O,H,L,C,V,var34,var15,var11,var12,var13,var14,var22,var23,var24,var25,var31,var32,Upticks,Downticks,Ticks,Var1,Var2); Plot1(var34, "미결제약정"); Plot2(var11,"매수5호가수량"); Plot3(var12,"매수5호가건수"); Plot4(var13,"매도호5호가수량"); Plot5(var14,"매도5호가건수"); Plot6(var15,"비차익"); Plot7(var22,"매도총건수"); Plot8(var23,"매수총건수"); Plot9(var24,"매도총수량"); Plot10(var25,"매수총건수"); Plot11(var31,"상승체결"); Plot12(var32,"하락체결"); #Plot13(var15, "비차익2"); }
프로필 이미지
yosong
2024-08-19
764
글번호 182604
지표
답변완료

수식 해석 관련해서 질문드립니다

공부를 하다가 해석이 안되는 부분이 있어서 여쭤보고 싶습니다. For cnt = 0 to n-1 { if hh == 0 or (hh > 0 and h[cnt] > hh) Then { hh = h[cnt]; hb = cnt; } if ll == 0 or (ll > 0 and l[cnt] < ll) Then { ll = l[cnt]; lb = cnt; } } 수식중에서 위 수식처럼 for 문으로 cnt 하는 조건문에서 array 가 아닌 if ~ then 이 들어가는 조건문이 있는가 하면 input : N(5); var : cnt(0),hh(0); Array : HV[50](0); if Bdate != Bdate[1] Then { For cnt = 49 DownTo 1 { HV[cnt] = HV[cnt-1]; } HV[0] = 0; } if DayClose(1)*1.2 >= C and C >= DayClose(1)*0.95 Then { if HV[0] == 0 or (HV[0] > 0 and V > HV[0]) Then HV[0] = V; } hh = 0; For cnt = 0 to N-1 { if HV[cnt] > 0 and (hh == 0 or (hh > 0 and HV[cnt] > hh)) Then hh = HV[cnt]; } Plot1(HV[0],"당일"); plot2(HH,"N일최고"); 위 식처럼 배열로 cnt 하는 수식이 있는데 어떨때 쓰는건지 궁금합니다 그리고 위 수식의 내용은 아래와 같은데 해석을 좀 해주셨으면 합니다 특히 For cnt = 49 DownTo 1 { HV[cnt] = HV[cnt-1]; } HV[0] = 0; 이부분이 잘 이해가 안갑니다 array 를 통해 무엇을 구하려는 것인지 궁금하며, if DayClose(1)*1.2 >= C and C >= DayClose(1)*0.95 Then { if HV[0] == 0 or (HV[0] > 0 and V > HV[0]) Then HV[0] = V; #이부분에서는 위의 array cnt 에서 구한 값과 어떤 관계인지요??? } hh = 0; For cnt = 0 to N-1 { if HV[cnt] > 0 and (hh == 0 or (hh > 0 and HV[cnt] > hh)) Then hh = HV[cnt]; } 그리고 이 조건에서는 발생한 최대거래량을 구하고, 5일간의 최대치를 구하는 부분인데 어떤 원리인지 잘 모르겠습니다. 도와주세요 수식 조건: 분봉 차트에서, 수식1) 현재가가 전일종가 대비 -5% 이상, +20% 이하인 구간에서 당일발생 된 최대거래량. 수식2) 4일전, 3일전, 2일전, 1일전, 0일전에서 (총5일간) 가장 큰 수식1의 수치.
프로필 이미지
yamu
2024-08-19
749
글번호 182593
지표
답변완료

부탁드립니다.

트레이딩뷰 지표인데 변환 부탁드립니다. 2가지 지표입니다. 1번째 지표 : BUY & SELL VOLUME TO PRICE PRESSURE signal = input(title="Base for FastMA Periods:", type=integer, defval=3) long = input(title="Buy to Sell Conv/Div Lookback:", type=integer, defval=27) vmacd = input(true, title="Buy to Sell Convergence/Div OSC:") vinv = input(false, title="Buy to Sell Conv/Div as cummulative:") norm = input(false, title="Normalised (Filtered) Version:") //vapi = input(false, title="Display Acc/Dist % :") vol = iff(volume > 0, volume , 1) // PRESSURE ALGORITHMS AND VARIABLES TR = atr(1) // Bull And Bear "Power-Balance" by Vadim Gimelfarb Algorithm's BP = iff(close<open, iff(close[1]<open, max(high-close[1], close-low), max(high-open, close-low)), iff(close>open, iff(close[1]>open, high-low, max(open-close[1], high-low)), iff(high-close>close-low, iff(close[1]<open, max(high-close[1],close-low), high-open), iff(high-close<close-low, iff(close[1]>open, high-low, max(open-close[1], high-low)), iff(close[1]>open, max(high-open, close-low), iff(close[1]<open, max(open-close[1], high-low), high-low)))))) SP = iff(close<open, iff(close[1]>open, max(close[1]-open, high-low), high-low), iff(close>open, iff(close[1]>open, max(close[1]-low, high-close), max(open-low, high-close)), iff(high-close>close-low, iff(close[1]>open, max(close[1]-open, high-low), high-low), iff(high-close<close-low, iff(close[1]>open, max(close[1]-low, high-close), open-low), iff(close[1]>open, max(close[1]-open, high-low), iff(close[1]<open, max(open-low, high-close), high-low)))))) TP = BP+SP // RAW Pressure Volume Calculations BPV = (BP/TP)*vol SPV = (SP/TP)*vol TPV = BPV+SPV BPVavg = ema(ema(BPV,signal),signal) SPVavg = ema(ema(SPV,signal),signal) TPVavg = ema(wma(TPV,signal),signal) // VN = vol/ema(vol,long) BPN = ((BP/ema(BP,long))*VN)*100 SPN = ((SP/ema(SP,long))*VN)*100 TPN = BPN+SPN nbf = ema(wma(BPN,signal),signal) nsf = ema(wma(SPN,signal),signal) tpf = ema(wma(TPN,signal),signal) ndif = nbf-nsf // BPc1 = BPV>SPV ? BPV : -abs(BPV) BPc2 = BPN>SPN ? BPN : -abs(BPN) SPc1 = SPV>BPV ? SPV : -abs(SPV) SPc2 = SPN>BPN ? SPN : -abs(SPN) BPcon = norm ? BPc2 : BPc1 SPcon = norm ? SPc2 : SPc1 BPAcon = norm ? nbf : BPVavg SPAcon = norm ? nsf : SPVavg TPAcon = norm ? tpf : TPVavg // Volume Pressure Convergence Divergence by XeL_Arjona vpo1 = vinv ? (( sum(BPVavg,long)-sum(SPVavg,long))/sum(TPVavg,long))*100 : ((BPVavg-SPVavg)/TPVavg)*100 vpo2 = vinv ? (( sum(nbf,long)-sum(nsf,long))/sum(tpf,long))*100 : ((nbf-nsf)/tpf)*100 vph = nz((vpo1 - vpo2),0) // Plot Indicator histC = vph > vph[1] ? blue:#BA00AA Vpo1C = vpo1 > 0 ? green:red Vpo2C = vpo2 > 0 ? green:red plot(vmacd ? na:SPcon, color=red, title="SELLING", style=columns, linewidth=3, transp=80) plot(vmacd ? na:BPcon, color=green, title="BUYING", style=columns, linewidth=3, transp=80) plot(vmacd ? na:SPAcon, color=red, title="SPAvg", style=line, linewidth=2) //ema(BearPower*SPV,signal) plot(vmacd ? na:BPAcon, color=green, title="BPAvg", style=line, linewidth=2) //ema(BullPower*BPV,signal) plot(vmacd ? vpo1:na, color=Vpo1C,title="VPO1", style=line, linewidth=3) plot(vmacd ? vpo2:na, color=Vpo2C,title="VPO2", style=line, linewidth=1) plot(vmacd ? vph:na, color=histC, title="VPH", style=columns, linewidth=3, transp=90) 2번째 지표 : Buy or Sell Signal Factor=input(3, minval=1,maxval = 140) Pd=input(80, minval=1,maxval = 140) Up=hl2-(Factor*atr(Pd)) Dn=hl2+(Factor*atr(Pd)) TrendUp=close[1]>TrendUp[1]? max(Up,TrendUp[1]) : Up TrendDown=close[1]<TrendDown[1]? min(Dn,TrendDown[1]) : Dn Trend = close > TrendDown[1] ? 1: close< TrendUp[1]? -1: nz(Trend[1],1) Tsl = Trend==1? TrendUp: TrendDown linecolor = Trend == 1 ? green : red plot(Tsl, color = linecolor , style = line , linewidth = 2,title = "SuperTrend") plotshape(cross(close,Tsl) and close>Tsl , "Up Arrow", shape.triangleup,location.belowbar,green,0,0) plotshape(cross(Tsl,close) and close<Tsl , "Down Arrow", shape.triangledown , location.abovebar, red,0,0) //plot(Trend==1 and Trend[1]==-1,color = linecolor, style = circles, linewidth = 3,title="Trend") plotarrow(Trend == 1 and Trend[1] == -1 ? Trend : na, title="Up Entry Arrow", colorup=lime, maxheight=60, minheight=50, transp=0) plotarrow(Trend == -1 and Trend[1] == 1 ? Trend : na, title="Down Entry Arrow", colordown=red, maxheight=60, minheight=50, transp=0)
프로필 이미지
bw
2024-08-18
953
글번호 182592
지표
답변완료

지표식 과 종가상 이선 이하인 종목검색식

A=lowest(v , 10 ); valuewhen(1, v==A , L ) 위지표 식과 종가가 위지표선 이하인 종목검색 식 부탁드립니다.
프로필 이미지
ijko7656
2024-08-18
704
글번호 182591
종목검색
답변완료

data 값에 자연수를 곱할수는 없나요?

예를 들어 data(1)*20 으로는 수식을 작성할수 없나요?
프로필 이미지
ycchoi17
2024-08-18
930
글번호 182590
지표