커뮤니티

검색식 부탁드립니다

프로필 이미지
삼손감자
2025-03-25 14:01:24
376
글번호 189519
답변완료
신호 검색과 종목 검색식 부탁드립니다 AA=eavg(C, 3); downTrend_con= AA>AA(1) and AA(1)<AA(2) and AA(2) <AA(3) and AA(3) < AA(4); // RSI CC=eavg(RSI(21), 3); RSI_con=CC>CC(1) and CC(1)>CC(2) and CC(2)>CC(3) and CC(3)>CC(4); //MACD하락추세반전 저점 BBB=MACD(8,21); CCC=BBB-eavg(BBB,9); MACD_con=CCC>CCC(1) and CCC(1)>CCC(2) and CCC(2)>CCC(3) and CCC(3)>CCC(4) and CCC(4)>CCC(5); // stochastic_slow BBBB=StochasticsSlow(21,5); CCCC=eavg(BBBB, 3); stochastic_con= CCCC>CCCC(1) and CCCC(1)>CCCC(2) and CCCC(2)>CCCC(3) and CCCC(3)>CCCC(4) and CCCC(4)>CCCC(5); //obv BBBBB=sum(if(C>C(1),v,if(C<C(1),-v,0))); CCCCC=eavg(BBBBB, 3); obv_con=CCCCC>CCCCC(1) and CCCCC(1)>CCCCC(2) and CCCCC(2)>CCCCC(3) and CCCCC(3)>CCCCC(4); //cci BBBBBB=cci(14); CCCCCC=eavg(BBBBBB, 3); cci_con=CCCCCC>CCCCCC(1) and CCCCCC(1)>CCCCCC(2) and CCCCCC(2)>CCCCCC(3) and CCCCCC(3)>CCCCCC(4); downTrend_con and (RSI_con or MACD_con or stochastic_con or obv_con or cci_con)
종목검색
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2025-03-25 14:50:00

안녕하세요 예스스탁입니다. 1 종목검색 var : AA(0),downTrend_con(False); var : CC(0),RSI_con(False); var : BBB(0),CCC(0),MACD_con(False); var : BBBB(0),CCCC(0),stochastic_con(False); var : BBBBB(0),CCCCC(0),obv_con(False); var : BBBBBB(0),CCCCCC(0),cci_con(False); AA=Ema(C, 3); downTrend_con= AA>AA[1] and AA[1]<AA[2] and AA[2] <AA[3] and AA[3] < AA[4]; // RSI CC=Ema(RSI(21), 3); RSI_con=CC>CC[1] and CC[1]>CC[2] and CC[2]>CC[3] and CC[3]>CC[4]; //MACD하락추세반전 저점 BBB=MACD(8,21); CCC=BBB-Ema(BBB,9); MACD_con=CCC>CCC[1] and CCC[1]>CCC[2] and CCC[2]>CCC[3] and CCC[3]>CCC[4] and CCC[4]>CCC[5]; // stochastic_slow BBBB=StochasticsK(21,5); CCCC=Ema(BBBB, 3); stochastic_con= CCCC>CCCC[1] and CCCC[1]>CCCC[2] and CCCC[2]>CCCC[3] and CCCC[3]>CCCC[4] and CCCC[4]>CCCC[5]; //obv BBBBB=Accum(iff(C>C[1],v,iff(C<C[1],-v,0))); CCCCC=Ema(BBBBB, 3); obv_con=CCCCC>CCCCC[1] and CCCCC[1]>CCCCC[2] and CCCCC[2]>CCCCC[3] and CCCCC[3]>CCCCC[4]; //cci BBBBBB=cci(14); CCCCCC=Ema(BBBBBB, 3); cci_con=CCCCCC>CCCCCC[1] and CCCCCC[1]>CCCCCC[2] and CCCCCC[2]>CCCCCC[3] and CCCCCC[3]>CCCCCC[4]; if downTrend_con and (RSI_con or MACD_con or stochastic_con or obv_con or cci_con) Then Find(1); 2 검색 var : AA(0),downTrend_con(False); var : CC(0),RSI_con(False); var : BBB(0),CCC(0),MACD_con(False); var : BBBB(0),CCCC(0),stochastic_con(False); var : BBBBB(0),CCCCC(0),obv_con(False); var : BBBBBB(0),CCCCCC(0),cci_con(False); AA=Ema(C, 3); downTrend_con= AA>AA[1] and AA[1]<AA[2] and AA[2] <AA[3] and AA[3] < AA[4]; // RSI CC=Ema(RSI(21), 3); RSI_con=CC>CC[1] and CC[1]>CC[2] and CC[2]>CC[3] and CC[3]>CC[4]; //MACD하락추세반전 저점 BBB=MACD(8,21); CCC=BBB-Ema(BBB,9); MACD_con=CCC>CCC[1] and CCC[1]>CCC[2] and CCC[2]>CCC[3] and CCC[3]>CCC[4] and CCC[4]>CCC[5]; // stochastic_slow BBBB=StochasticsK(21,5); CCCC=Ema(BBBB, 3); stochastic_con= CCCC>CCCC[1] and CCCC[1]>CCCC[2] and CCCC[2]>CCCC[3] and CCCC[3]>CCCC[4] and CCCC[4]>CCCC[5]; //obv BBBBB=Accum(iff(C>C[1],v,iff(C<C[1],-v,0))); CCCCC=Ema(BBBBB, 3); obv_con=CCCCC>CCCCC[1] and CCCCC[1]>CCCCC[2] and CCCCC[2]>CCCCC[3] and CCCCC[3]>CCCCC[4]; //cci BBBBBB=cci(14); CCCCCC=Ema(BBBBBB, 3); cci_con=CCCCCC>CCCCCC[1] and CCCCCC[1]>CCCCCC[2] and CCCCCC[2]>CCCCCC[3] and CCCCCC[3]>CCCCCC[4]; if downTrend_con and (RSI_con or MACD_con or stochastic_con or obv_con or cci_con) Then plot1(L,"검색"); 즐거운 하루되세요 > 삼손감자 님이 쓴 글입니다. > 제목 : 검색식 부탁드립니다 > 신호 검색과 종목 검색식 부탁드립니다 AA=eavg(C, 3); downTrend_con= AA>AA(1) and AA(1)<AA(2) and AA(2) <AA(3) and AA(3) < AA(4); // RSI CC=eavg(RSI(21), 3); RSI_con=CC>CC(1) and CC(1)>CC(2) and CC(2)>CC(3) and CC(3)>CC(4); //MACD하락추세반전 저점 BBB=MACD(8,21); CCC=BBB-eavg(BBB,9); MACD_con=CCC>CCC(1) and CCC(1)>CCC(2) and CCC(2)>CCC(3) and CCC(3)>CCC(4) and CCC(4)>CCC(5); // stochastic_slow BBBB=StochasticsSlow(21,5); CCCC=eavg(BBBB, 3); stochastic_con= CCCC>CCCC(1) and CCCC(1)>CCCC(2) and CCCC(2)>CCCC(3) and CCCC(3)>CCCC(4) and CCCC(4)>CCCC(5); //obv BBBBB=sum(if(C>C(1),v,if(C<C(1),-v,0))); CCCCC=eavg(BBBBB, 3); obv_con=CCCCC>CCCCC(1) and CCCCC(1)>CCCCC(2) and CCCCC(2)>CCCCC(3) and CCCCC(3)>CCCCC(4); //cci BBBBBB=cci(14); CCCCCC=eavg(BBBBBB, 3); cci_con=CCCCCC>CCCCCC(1) and CCCCCC(1)>CCCCCC(2) and CCCCCC(2)>CCCCCC(3) and CCCCCC(3)>CCCCCC(4); downTrend_con and (RSI_con or MACD_con or stochastic_con or obv_con or cci_con)