예스스탁
예스스탁 답변
2024-12-27 14:23:56
안녕하세요
예스스탁입니다.
input : ntime(30);
input : 익절(300),손절(36),k(100),k1(100),s(20),s1(20);
var : T1(0),D1(0),TM(0),TF(0),cnt(0);
Array : CC[100](0),HH[100](0),LL[100](0);
if Bdate != Bdate[1] Then
{
T1 = TimeToMinutes(stime);
D1 = sdate;
}
if D1 > 0 then
{
if sdate == D1 Then
TM = TimeToMinutes(stime)-T1;
Else
TM = TimeToMinutes(stime)+1440-T1;
TF = TM%ntime;
if Bdate != Bdate[1] or
(Bdate == Bdate[1] and ntime > 1 and TF < TF[1]) or
(Bdate == Bdate[1] and ntime > 1 and TM >= TM[1]+ntime) or
(Bdate == Bdate[1] and ntime == 1 and TM > TM[1]) Then
{
for cnt = 99 downto 1
{
HH[cnt] = HH[cnt-1][1];
LL[cnt] = LL[cnt-1][1];
}
HH[0] = H;
LL[0] = L;
}
if H > HH[0] Then
HH[0] = H;
if L < LL[0] Then
LL[0] = L;
if MarketPosition <= 0 Then
Buy("b",AtStop,HH[s]+PriceScale*k);
if MarketPosition >= 0 Then
Sell("s",AtStop,LL[s1]-PriceScale*k1);
}
SetStopProfittarget(익절,PointStop);
SetStopLoss(손절,PointStop);
즐거운 하루되세요
> 네온0609 님이 쓴 글입니다.
> 제목 : 수식 부탁드립니다
> 수고하십니다
아래수식은 30분봉기준으로 5분봉에서 30분봉시스템 신호가 나올수
있도록 수식부탁 드립니다.
input : 익절(300),손절(36),k(100),k1(100),s(20),s1(20);
Buy("b",AtStop,h[s]+PriceScale*k);
Sell("s",AtStop,l[s1]-PriceScale*k1);
SetStopProfittarget(익절,PointStop);
SetStopLoss(손절,PointStop);
감사합니다