예스스탁
예스스탁 답변
2022-10-07 19:55:05
안녕하세요
예스스탁입니다.
1-1 시스템
input : multiple(15),gap(1),Period(20);
var : aa(0),Top(0),emav(0),Condition(False),candle(-1),vv(False),CumVol(0),vol(0),v1(0);
AA = abs((H-L)/H*100);
emav = ema(V,20);
Condition = AA > multiple and C<O and O>C[1]*(1+gap/100) and V > emav[1]*3;
if Condition == true Then
{
TOP = H;
candle = 0;
}
Else
{
if candle >= 0 Then
candle = candle+1;
}
vv = C > highest(V,Period)[1];
if crossup(C, TOP[1]) and candle > Period and VV Then
Buy();
1-2 종목검색
input : multiple(15),gap(1),Period(20);
var : aa(0),Top(0),emav(0),Condition(False),candle(-1),vv(False),CumVol(0),vol(0),v1(0);
AA = abs((H-L)/H*100);
emav = ema(V,20);
Condition = AA > multiple and C<O and O>C[1]*(1+gap/100) and V > emav[1]*3;
if Condition == true Then
{
TOP = H;
candle = 0;
}
Else
{
if candle >= 0 Then
candle = candle+1;
}
vv = C > highest(V,Period)[1];
if crossup(C, TOP[1]) and candle > Period and VV Then
find(1);
2-1 시스템
input : multiple(15),gap(1),Period(20);
var : aa(0),Top(0),emav(0),Condition(False),candle(-1),vv(False),CumVol(0),vol(0),v1(0);
AA = abs((H-L)/H*100);
emav = ema(V,20);
CumVol = CumVol+V;
Condition = AA > multiple and C<O and O>C[1]*(1+gap/100) and V > emav[1]*3;
if Condition == true Then
{
TOP = H;
candle = 0;
V1 = CumVol[1];
}
Else
{
if candle >= 0 Then
candle = candle+1;
}
Vol = CumVol-V1-V;
if crossup(V, Vol) and C > TOP[1] and candle > Period Then
Buy();
2-2 종목검색
input : multiple(15),gap(1),Period(20);
var : aa(0),Top(0),emav(0),Condition(False),candle(-1),vv(False),CumVol(0),vol(0),v1(0);
AA = abs((H-L)/H*100);
emav = ema(V,20);
CumVol = CumVol+V;
Condition = AA > multiple and C<O and O>C[1]*(1+gap/100) and V > emav[1]*3;
if Condition == true Then
{
TOP = H;
candle = 0;
V1 = CumVol[1];
}
Else
{
if candle >= 0 Then
candle = candle+1;
}
Vol = CumVol-V1-V;
if crossup(V, Vol) and C > TOP[1] and candle > Period Then
find(1);
즐거운 하루되세요
> 매치다2 님이 쓴 글입니다.
> 제목 : 시스탬식과 종목 검색부탁드립니다
> 1, 시스템식과 종목검색식 부탁드려요
###### 종목검샥식은 시스템신호 발생하는걸루 부탁드립니다
AA=abs((H-L)/H*100);
Condition=
AA > multiple and
C<O and
O>C(1)*(1+gap/100) and
V>eavg(V(1), 20)*3;
TOP=valuewhen(1, Condition, H);
candle=BarsSince(Condition);
VV=V>highest(V(1), Period);
crossup(C, TOP(1)) and candle > Period and VV
---------------------------------------------------------------------------------
multiple 15
gap 1
Period 20
2, 시스템식과 종목 검색식 부탁드립니다
AA=abs((H-L)/H*100);
Condition=
AA > multiple and
C<O and
O>C(1)*(1+gap/100) and
V>eavg(V(1), 20)*3;
TOP=valuewhen(1, Condition, H);
candle=BarsSince(Condition);
CumVol=sum(V); //cumulative volume
Vol=CumVol-valuewhen(1, Condition, CumVol(1))-V; //cumulative volume (exclude current)
crossup(V, Vol) and C > TOP(1) and candle > Period
---------------------------------------------------------------------------------
multiple 15
gap 1
Period 20
황금연휴 잘보내시고 부탁드립니다