답변완료
문의 드립니다
input : StartTime(80000),EndTime(55000),Xtime(55500),진입횟수(1);
var : Tcond(false),entry(0);
var : B1(0),B2(0),BX1(0),BX2(0);
var : S1(0),S2(0),SX1(0),SX2(0);
if sdate != sDate[1] Then
SetStopEndofday(Xtime);
if (sdate != sdate[1] and stime >= EndTime) or
(sdate == sdate[1] and stime >= EndTime and stime[1] < EndTime) Then
Tcond = False;
if (sdate != sdate[1] and stime >= StartTime) or
(sdate == sdate[1] and stime >= StartTime and stime[1] < StartTime) Then
{
Tcond = true;
SetStopEndofday(0);
entry = 0;
}
if (MarketPosition != 0 and MarketPosition != MarketPosition[1]) or
(MarketPosition == MarketPosition[1] and TotalTrades > TotalTrades[1]) Then
entry = entry+1;
B1 = DayLow(1)+(DayHigh(1)-DayLow(1))*0.410;
BX1 = DayLow(1)+(DayHigh(1)-DayLow(1))*0.950;
S1 = DayHigh(1)+(DayHigh(1)-DayLow(1))*-7.150;
SX1 = DayLow(1)+(DayHigh(1)-DayLow(1))*-0.336;
if Tcond == true Then
{
if (MarketPosition == 0 or (MarketPosition == 1 and MaxEntries == 1)) Then
{
if entry < 진입횟수 and L > B1 Then
Buy("b1",AtLimit,B1);
}
if MarketPosition == 1 Then
{
ExitLong("bx1",AtLimit,BX1,"B1");
}
if (MarketPosition == 0 or (MarketPosition == -1 and MaxEntries == 1)) Then
{
if entry < 진입횟수 and H < S1 Then
Sell("S1",AtLimit,S1);
}
if MarketPosition == -1 Then
{
ExitShort("sx1",AtLimit,SX1,"S1");
}
SetStopProfittarget(PriceScale*0,PointStop);
SetStopLoss(PriceScale*1000,PointStop); }
위 수식어는 전일폭에 당일 피보나치 %을 설정하는 수식어 입니다.
수정해야 할 사안은
당일폭에 피보나치 %을 설정하는 수식어로 변경하고자 합니다.
2025-01-20
491
글번호 187365
시스템
답변완료
종목검색식 요청드립니다.
아래의 키움신호가 발생한 종목을 검색하는 검색식을 각각 만들고 싶습니다. 도움 부탁드리겠습니다.
1. 키움신호 (short-5, mid-26, long-52, Percent 3)
max( avg(C,short), avg(C,mid), avg(C,long)) <
min( avg(C,short), avg(C,mid), avg(C,long)) * (1+Percent/100)
and HIGHEST(H, 4, 1) < C
and O < C
and V(1)*1.5 <= V
2. 키움신호 (short-5, mid-26, long-52, Percent 3)
max( avg(C,short), avg(C,mid), avg(C,long)) <
min( avg(C,short), avg(C,mid), avg(C,long)) * (1+Percent/100) &&
HIGHEST(H, 4, 1) < C
and O < C
and ((C(1)*1.021 <= C) or (O*1.021 <= C))
and (C-O)*2 >= (H-C)
and (C-O)*0.9 >= (O-L)
and V(1)*1.5 <= V
and avg(V, 5) >= 9000
and PreDayClose() >= 950
and Crossup(C,SAR(0.02, 0.2))
2025-01-20
511
글번호 187364
종목검색
답변완료
신호수식 부탁드려요
키움신호수식
MG = eavg(C, period, 1)+((C-(eavg(C,period, 1)))/(C/(eavg(C, period, 1))*rate));
E = eavg(C, period, 1);
하향지속 = sum(MG > E, K2);
상향지속 = sum(MG < E, K2);
a1 = valuewhen(1, 상향지속(K2) ==N2 && 하향지속==K2, h);
a1(1)<a1
(지표변수)
period 10
rate 5
K2 5
N2 3
2025-01-20
530
글번호 187362
시스템