커뮤니티

RSI와 StochasticsK 이 동시에 만족 할때..

프로필 이미지
삼촌
2025-01-02 07:16:17
569
글번호 186781
답변완료
시스템 1, RSI 시그널이 골든 크로스 하고 StochasticsK 시그널이 골든 크로스 할때 매수하고 RSI 시그널이 데드 크로스 하고 StochasticsK 시그널이 데드 크로스 할때 매도하고 StochasticsK 시그널이 데드 크로스 할때 매수 청산 하고 StochasticsK 시그널이 골든 크로스 할때 매도 청산 하는 시스템 식을 좀 알려주세요. 2. RSI 시그널이 골든 크로스 하고 StochasticsK 시그널이 골든 크로스 할때 매수하고 RSI 시그널이 데드 크로스 하고 StochasticsK 시그널이 데드 크로스 할때 매도하고 RSI 시그널이 데드 크로스 하고 StochasticsK 시그널이 데드 크로스 할때 매도하고 RSI 시그널이 데드 크로스 하고 StochasticsK 시그널이 데드 크로스 할때 매수도 청산 하고 RSI 시그널이 골든 크로스 하고 StochasticsK 시그널이 골든 크로스 할때 매도 청산 하는 시스템 식을 좀 알려주세요.
시스템
답변 3
프로필 이미지

예스스탁 예스스탁 답변

2025-01-02 15:13:06

안녕하세요 예스스탁입니다. 1 Input : Period(9),sig(10); input : sto1(10),sto2(5),sto3(5); var : RSIV(0),RSIS(0),tx(0); var : stok(0),stod(0); RSIV = RSI(Period); RSIS = ma(RSIV,sig); stok = stochasticsK(sto1,sto2); stod = stochasticsD(sto1,sto2,sto3); if MarketPosition <= 0 and CrossUp(RSIV,RSIS) and CrossUp(Stok,stod) Then Buy(); if MarketPosition == 1 and CrossDown(stok,stod) Then ExitLong(); if MarketPosition >= 0 and CrossDown(RSIV,RSIS) and CrossDown(Stok,stod) Then Sell(); if MarketPosition == -1 and Crossup(stok,stod) Then ExitShort(); 2 Input : Period(9),sig(10); input : sto1(10),sto2(5),sto3(5); var : RSIV(0),RSIS(0),tx(0); var : stok(0),stod(0); RSIV = RSI(Period); RSIS = ma(RSIV,sig); stok = stochasticsK(sto1,sto2); stod = stochasticsD(sto1,sto2,sto3); if MarketPosition <= 0 and CrossUp(RSIV,RSIS) and CrossUp(Stok,stod) Then Buy(); if MarketPosition >= 0 and CrossDown(RSIV,RSIS) and CrossDown(Stok,stod) Then Sell(); 즐거운 하루되세요 > 삼촌 님이 쓴 글입니다. > 제목 : RSI와 StochasticsK 이 동시에 만족 할때.. > 시스템 1, RSI 시그널이 골든 크로스 하고 StochasticsK 시그널이 골든 크로스 할때 매수하고 RSI 시그널이 데드 크로스 하고 StochasticsK 시그널이 데드 크로스 할때 매도하고 StochasticsK 시그널이 데드 크로스 할때 매수 청산 하고 StochasticsK 시그널이 골든 크로스 할때 매도 청산 하는 시스템 식을 좀 알려주세요. 2. RSI 시그널이 골든 크로스 하고 StochasticsK 시그널이 골든 크로스 할때 매수하고 RSI 시그널이 데드 크로스 하고 StochasticsK 시그널이 데드 크로스 할때 매도하고 RSI 시그널이 데드 크로스 하고 StochasticsK 시그널이 데드 크로스 할때 매도하고 RSI 시그널이 데드 크로스 하고 StochasticsK 시그널이 데드 크로스 할때 매수도 청산 하고 RSI 시그널이 골든 크로스 하고 StochasticsK 시그널이 골든 크로스 할때 매도 청산 하는 시스템 식을 좀 알려주세요.
프로필 이미지

삼촌

2025-01-02 23:36:48

> 예스스탁 님이 쓴 글입니다. > 제목 : Re : RSI와 StochasticsK 이 동시에 만족 할때.. > 안녕하세요 예스스탁입니다. 1 Input : Period(9),sig(10); input : sto1(10),sto2(5),sto3(5); var : RSIV(0),RSIS(0),tx(0); var : stok(0),stod(0); RSIV = RSI(Period); RSIS = ma(RSIV,sig); stok = stochasticsK(sto1,sto2); stod = stochasticsD(sto1,sto2,sto3); if MarketPosition <= 0 and CrossUp(RSIV,RSIS) and CrossUp(Stok,stod) Then Buy(); if MarketPosition == 1 and CrossDown(stok,stod) Then ExitLong(); if MarketPosition >= 0 and CrossDown(RSIV,RSIS) and CrossDown(Stok,stod) Then Sell(); if MarketPosition == -1 and Crossup(stok,stod) Then ExitShort(); 2 Input : Period(9),sig(10); input : sto1(10),sto2(5),sto3(5); var : RSIV(0),RSIS(0),tx(0); var : stok(0),stod(0); RSIV = RSI(Period); RSIS = ma(RSIV,sig); stok = stochasticsK(sto1,sto2); stod = stochasticsD(sto1,sto2,sto3); if MarketPosition <= 0 and CrossUp(RSIV,RSIS) and CrossUp(Stok,stod) Then Buy(); if MarketPosition >= 0 and CrossDown(RSIV,RSIS) and CrossDown(Stok,stod) Then Sell(); 즐거운 하루되세요 > 삼촌 님이 쓴 글입니다. > 제목 : RSI와 StochasticsK 이 동시에 만족 할때.. > 시스템 1, RSI 시그널이 골든 크로스 하고 StochasticsK 시그널이 골든 크로스 할때 매수하고 RSI 시그널이 데드 크로스 하고 StochasticsK 시그널이 데드 크로스 할때 매도하고 StochasticsK 시그널이 데드 크로스 할때 매수 청산 하고 StochasticsK 시그널이 골든 크로스 할때 매도 청산 하는 시스템 식을 좀 알려주세요. 2. RSI 시그널이 골든 크로스 하고 StochasticsK 시그널이 골든 크로스 할때 매수하고 RSI 시그널이 데드 크로스 하고 StochasticsK 시그널이 데드 크로스 할때 매도하고 RSI 시그널이 데드 크로스 하고 StochasticsK 시그널이 데드 크로스 할때 매도하고 RSI 시그널이 데드 크로스 하고 StochasticsK 시그널이 데드 크로스 할때 매수도 청산 하고 RSI 시그널이 골든 크로스 하고 StochasticsK 시그널이 골든 크로스 할때 매도 청산 하는 시스템 식을 좀 알려주세요.
프로필 이미지

삼촌

2025-01-02 23:41:05

> 삼촌 님이 쓴 글입니다. > 제목 : Re : Re : RSI와 StochasticsK 이 동시에 만족 할때.. > > 예스스탁 님이 쓴 글입니다. > 제목 : Re : RSI와 StochasticsK 이 동시에 만족 할때.. > 안녕하세요 예스스탁입니다. 1 Input : Period(9),sig(10); input : sto1(10),sto2(5),sto3(5); var : RSIV(0),RSIS(0),tx(0); var : stok(0),stod(0); RSIV = RSI(Period); RSIS = ma(RSIV,sig); stok = stochasticsK(sto1,sto2); stod = stochasticsD(sto1,sto2,sto3); if MarketPosition <= 0 and CrossUp(RSIV,RSIS) and CrossUp(Stok,stod) Then Buy(); if MarketPosition == 1 and CrossDown(stok,stod) Then ExitLong(); if MarketPosition >= 0 and CrossDown(RSIV,RSIS) and CrossDown(Stok,stod) Then Sell(); if MarketPosition == -1 and Crossup(stok,stod) Then ExitShort(); 2 Input : Period(9),sig(10); input : sto1(10),sto2(5),sto3(5); var : RSIV(0),RSIS(0),tx(0); var : stok(0),stod(0); RSIV = RSI(Period); RSIS = ma(RSIV,sig); stok = stochasticsK(sto1,sto2); stod = stochasticsD(sto1,sto2,sto3); if MarketPosition <= 0 and CrossUp(RSIV,RSIS) and CrossUp(Stok,stod) Then Buy(); if MarketPosition >= 0 and CrossDown(RSIV,RSIS) and CrossDown(Stok,stod) Then Sell(); 즐거운 하루되세요 > 삼촌 님이 쓴 글입니다. > 제목 : RSI와 StochasticsK 이 동시에 만족 할때.. > 시스템 1, RSI 시그널이 골든 크로스 하고 StochasticsK 시그널이 골든 크로스 할때 매수하고 RSI 시그널이 데드 크로스 하고 StochasticsK 시그널이 데드 크로스 할때 매도하고 StochasticsK 시그널이 데드 크로스 할때 매수 청산 하고 StochasticsK 시그널이 골든 크로스 할때 매도 청산 하는 시스템 식을 좀 알려주세요. 2. RSI 시그널이 골든 크로스 하고 StochasticsK 시그널이 골든 크로스 할때 매수하고 RSI 시그널이 데드 크로스 하고 StochasticsK 시그널이 데드 크로스 할때 매도하고 RSI 시그널이 데드 크로스 하고 StochasticsK 시그널이 데드 크로스 할때 매도하고 RSI 시그널이 데드 크로스 하고 StochasticsK 시그널이 데드 크로스 할때 매수도 청산 하고 RSI 시그널이 골든 크로스 하고 StochasticsK 시그널이 골든 크로스 할때 매도 청산 하는 시스템 식을 좀 알려주세요. 감사 합니다.