답변완료
문의드립니다
CrossUp(c,shift((highest(high,shortPeriod)+highest(low,shortPeriod)
+highest(high,midPeriod)+highest(low,midPeriod))/4,midPeriod-1))
and
CrossUp(c,shift(UpperBand=highest(H,n),midPeriod-1))
shortperiod 9
midperiod 26
n 26
수식으로 검색식 부탁드립니다
2024-08-30
530
글번호 182987
종목검색
답변완료
종목검색식 부탁 합니다.
안녕하세요.
아래 수식 종목검색식으로 변환 부탁 합니다.
green 신호가 발생 했을때 종목 검색 되도록 요청 드립니다.
수고하세요.
input : Periods(10);
input : Multiplier(3.0);
input : changeATR(true);
input : showsignals(true);
input : highlighting(true);
var : src(0),alpha(0),atr1(0),atr2(0),atrv(0);
var : up(0),up1(0),dn(0),dn1(0);
var : trend(0),tx(0);
src = (h+l)/2;
alpha = 1/Periods;
atr1 = iff(IsNan(atr1[1]) == true,ma(TrueRange, Periods), alpha * TrueRange + (1 - alpha) * iff(IsNan(atr1[1])==true,0,atr1[1]));
atr2 = ma(TrueRange, Periods);
atrv = iff(changeATR ==true,atr1, atr2);
up = src-(Multiplier*atrv);
up1 = iff(isnan(up[1])==true,up,up[1]);
up = iff(close[1] > up1 , max(up,up1), up);
dn = src+(Multiplier*atrv);
dn1 = iff(isnan(dn[1])==true,dn,dn[1]);
dn = iff(close[1] < dn1 , min(dn, dn1) , dn);
trend = 1;
trend = iff(isnan(trend[1])==true,trend,trend[1]);
trend = iff(trend == -1 and close > dn1 , 1 , iff(trend == 1 and close < up1 , -1 , trend));
if trend == 1 Then
{
plot1(up,"Up Trend",green);
NoPlot(2);
}
Else
{
NoPlot(1);
plot2(dn,"Down Trend",Red);
}
if trend == 1 and trend[1] == -1 Then
{
tx = Text_New(sDate,sTime,up,"●");
Text_SetColor(tx,Green);
Text_SetStyle(tx,2,2);
}
if trend == -1 and trend[1] == 1 Then
{
tx = Text_New(sDate,sTime,dn,"●");
Text_SetColor(tx,Red);
Text_SetStyle(tx,2,2);
}
2024-08-30
492
글번호 182983
종목검색
답변완료
문의드립니다
input : coeff(1);
input : AP(14);
input : novolumedata(1);#1:true, 0:False
var : atrv(0),src(0),upt(0),downt(0),AlphaTrend(0);
var : buySignalk(False),sellSignalk(False);
ATRv = ma(TrueRange, AP);
src = close;
upT = low - ATRv * coeff;
downT = high + ATRv * coeff;
Condition1 = False;
if novolumedata == 1 and rsi(AP) >= 50 Then
Condition1 = true;
if novolumedata == 0 and MFI(AP) >= 50 Then
Condition1 = true;
AlphaTrend = iff(Condition1 , IFf(upT < iff(isnan(AlphaTrend[1])==true,0,AlphaTrend[1]), iff(isnan(AlphaTrend[1])==true,0,AlphaTrend[1]) , upT),IFf(downT > iff(isnan(AlphaTrend[1])==true,0,AlphaTrend[1]) , iff(isnan(AlphaTrend[1])==true,0,AlphaTrend[1]) , downT));
if CrossUp(AlphaTrend,AlphaTrend[2]) Then
Buy();
if CrossDown(AlphaTrend,AlphaTrend[2]) Then
Sell();
수고 많으십니다
문의드릴 내용은 저번에 만들어 주신 수식인데
여기에 추가로 하루 100틱 손실이면 매매종료
하루100틱 수익이면 매매종료
이걸 추가하고 싶어서 문의드립니다
감사합니다
2024-08-30
1009
글번호 182977
시스템
답변완료
어제 수식 문의 드렸는데, 다시 한번 문의 드립니다.
어제 오류수정 도와주셨는데 제가 수치값을 잘못 입력해서
검색되어야 하는 위치가 아닌 다른 위치가 검색되었습니다.
다시 한번 오류수정 도와주시면 감사하겠습니다.
번거롭게 해드려 죄송합니다.
INPUT : midPeriod(26),Period(30),D1(1);
var : HU(0),BU(0);
HU = shift(close,-midPeriod+25);
BU = BollBandUp(Period,D1);
if (CrossUp(HU, BU))Then
Find(1);
즐거운 하루 보내세요
2024-08-30
1004
글번호 182976
종목검색