예스스탁
예스스탁 답변
2025-03-31 10:17:15
안녕하세요
예스스탁입니다.
1
if Condition1 == true and Condition1[1] == False Then
Buy();
if Condition2 == true and Condition2[1] == False Then
Sell();
각 진입식이 전봉까지 조건에 충족하지 않다가
현재봉에서 조건이 충족되면 진입하게 되어 있습니다.
조건만 만족하면 진입하고자 하시면 전봉에 조건이 충족되지 않는다는 조건을 삭제하시면 됩니다.
다만 이 경우 청산후 해당봉에 동일진입이 또 발생할 수 있습니다.
input : P1(7),P2(27),Period(18);
input : 익절틱수(12),손절틱수(20);
var : m1(0),m2(0),R(0);
m1 = ma(C,P1);
m2 = ma(C,P2);
R = RSI(Period);
Condition1 = m1 > m2 and R >= 55;
Condition2 = m1 < m2 and R <= 45;
if Condition1 == true Then
Buy();
if Condition2 == true Then
Sell();
SetStopProfittarget(PriceScale*익절틱수,PointStop);
SetStopLoss(PriceScale*손절틱수,PointStop);
2
input : P1(7),P2(27),Period(18);
input : 익절틱수(12),손절틱수(20);
var : m1(0),m2(0),R(0);
m1 = ma(C,P1);
m2 = ma(C,P2);
R = RSI(Period);
Condition1 = m1 > m2 and CrossUp(R,55);
Condition2 = m1 < m2 and CrossDown(R,45);
if Condition1 == true Then
Buy();
if Condition2 == true Then
Sell();
SetStopProfittarget(PriceScale*익절틱수,PointStop);
SetStopLoss(PriceScale*손절틱수,PointStop);
즐거운 하루되세요
> 고박사122 님이 쓴 글입니다.
> 제목 : 문의드립니다.
> 안녕하세요 운영자님
문의사항과 추가요청사항이 각각 1개씩 있습니다.
1. 문의사항 : 의뢰드린 수식을 차트에 적용시켜보니 적용이 안되는 구간도 보이는 것 같은데 설명부탁드립니다. 차트에서 23:00시경부터 01:00 까지조건을 만족해 보이는데도 신호가 뜨질 않습니다.7일선과 27일선이 역배열이고 RSI가 45 이하이면 매도신호가 떠야되는게 아닌지요?
2. 추가 요청사항 : 상승추세일때 RSI선이 55기준선을 상향돌파 시 매수하고
하락추세일때 RSI선이 45기준선을 하향돌파 시 매도하도록 변경 부탁
드립니다.
input : P1(7),P2(27),Period(18);
input : 익절틱수(12),손절틱수(20);
var : m1(0),m2(0),R(0);
m1 = ma(C,P1);
m2 = ma(C,P2);
R = RSI(Period);
Condition1 = m1 > m2 and R >= 55;
Condition2 = m1 < m2 and R <= 45;
if Condition1 == true and Condition1[1] == False Then
Buy();
if Condition2 == true and Condition2[1] == False Then
Sell();
SetStopProfittarget(PriceScale*익절틱수,PointStop);
SetStopLoss(PriceScale*손절틱수,PointStop);