답변완료
문의드립니다.
항상 고맙고 감사합니다.
다름이 아니오라 아래 검색식이 작동이 안되어서 그럽니다.
5분봉에서 검색을 하고 싶습니다.
Input : Period(200), MultiD(2),Period1(200), MultiD1(3);
var : BBup(0),BBdn(0),BBup1(0),BBdn1(0),BBup6(0),BBdn6(0),BBup7(0),BBdn7(0);
Input : Period3(200);
var : Sma3(0);
BBup = BollBandUp(Period,MultiD);
BBup1 = BollBandUp(Period1,MultiD1);
Sma3 = ma(C,Period3);
value1=2*(c-Sma3);
BBup6 = BollBandUp(100,2);
BBup7 = BollBandUp(100,3);
Value2=c+2*(Sma3-c)+BBup-BBup1-(1*c+BBup6-BBup7);
if Value2>0 then
find(1);
2020-02-28
340
글번호 136450
종목검색
답변완료
안녕하세요
sn = (lowerAB > lowerDC) and (upperAB < upperDC);
sf = (lowerAB < lowerDC) and (upperAB > upperDC);
noS = (sn == false) and (sf == false);
scolor = iff(noS,blue,iff(sn,black,gray));
plot1(0,"0",scolor);
sf 상태에서 sn 상태로 진입하면 알람이 발생하도록
수식 부탁드립니다.
감사합니다.
2020-02-28
353
글번호 136433
지표
답변완료
문의
답변 고맙습니다.
1.아래 수식 MaxContracts*비율을 맥스계약수량으로 사용하는 수식 요청합니다.
2.진입필터 수식 요청합니다.
if 진입조건 and 최근 20일간 하이로우 최소 5.00 ~ 최대 20.00 then
*************************************************************************************
input : up익절1(150),up익절2(200);
if MarketPosition == 1 Then
exitlong("bx1",AtLimit,EntryPrice+PriceScale*up익절1,"",Floor(MaxContracts*0.50),1);
if MarketPosition == 1 Then
exitlong("bx2",AtLimit,EntryPrice+PriceScale*up익절2);
input : dn익절1(150),dn익절2(200);
if MarketPosition == -1 Then
exitshort("sx1",AtLimit,EntryPrice-pricescale*dn익절1,"",Floor(MaxContracts*0.50),1);
if MarketPosition == -1 Then
exitshort("sx2",AtLimit,EntryPrice-pricescale*dn익절2);
2020-02-28
206
글번호 136430
시스템
답변완료
수식문의드립니다.
수고 하십니다.
1. 분봉 거래량이 10개을 평균 냈을때 1000건 미만시에는 배경색 이 변하지 않고, 거래량이 1001건 이상일때
에만 배경색이 빨간색, 파랑색으로 변환 하는 는데, 색이 변하는 조건은 매수체경량이 높으면 빨강색, 매도체령량이 높으면 파랑색으로 변하는 지표수식,
2. 위의 1번의 조건에서 매수체결량이 높으면 1계약 매수 진입후 매도 체결량이 높으면 1계약 청산후 매도 1계약, 매수 체결량이 높으면 1계약 매도 청산후, 1계약 매수 진입.
수식 부탁드립니다.
2020-02-28
242
글번호 136429
지표
답변완료
강조식 문의드립니다
안녕하세요
키움에서 쓰던 강조식인데
예스트레이더에서 쓸 수 있게 부탁드려요
(
V > highest(V, 150)*0.59 and
c >= highest(H, 150,1) and
o <c and
time >= 090100
)
or
(
V > highest(V, 150)*0.85 and
c > highest(H, 150,1) and
o <c and
c(1)*1.05 > o and
time == 090000
)
or
(
V(1) > highest(V, 150)*0.5 and
V > highest(V, 150)*0.35 and
c >= highest(H, 150,1) and
c(1) >= highest(H, 150,2) and
o(1) <c(1) and
o < c
)
and
o*1.015 < c
감사합니다!
2020-02-27
263
글번호 136427
강조