답변완료
문의드립니다.
input: 막대굵기1(2), 막대굵기2(1);
var : sumPL(0);
if bDate != bDate[1] Then
{
sumPL = 0;
}
Else
{
sumPL = (sumPL + (Upvol-DownVol)+ticks)/2*1.00;
if sumPL > 0 Then
Plot1(sumPL, "순매수체결량",RGb(255, 0, 0),def,막대굵기1); // 진적
Else
Plot1(sumPL, "순매수체결량",RGb(255, 255, 255),def,막대굵기2); // 진청
}
PlotBaseLine1(0, "기준선0");
지표수식인데 종목검색부탁드립니다
2024-02-05
637
글번호 176428
종목검색
답변완료
문의 드립니다.
아래 식에서 5 20 정배열일 때 주가가 20일 아래 있을 때도 신호가 발생하고 있습니다.
매수 경우 정배열이지만 20 이평 아래에 주가가 있을 때 신호가 발생하지 않도록 하고
매도 경우 역배열이지만 20 이평 위에 주가가 있을 때 신호가 발생하지 않도록 하고자 합니다.
확실하게 정배열 상황이고 20이평 위에 주가가 있을 때 발생하는 신호만 적용하고자 합니다. 매도 역시 그렇합니다.
부탁드립니다. 감사합니다^.^
input : P1(5),P2(20),sto1(10),sto2(5),sto3(5);
var : mav1(0),mav2(0);
var : stok(0),stod(0);
mav1 = ma(c,P1);
mav2 = ma(c,P2);
stok = StochasticsK(sto1,sto2);
stod = StochasticsD(sto1,sto2,sto3);
if MarketPosition <= 0 and mav1 > mav2 and stok < 50 and CrossUp(stok,stod) Then
Buy();
if MarketPosition == 1 Then
{
if CrossDown(stok,stod) Then
ExitLong();
}
if MarketPosition >= 0 and mav1 < mav2 and stok > 50 and CrossDown(stok,stod) Then
Sell();
if MarketPosition == -1 Then
{
if CrossUp(stok,stod) Then
ExitShort();
}
2024-02-05
807
글번호 176426
시스템
답변완료
문의 드립니다!
안녕하세요!
아래 수식을 적용시 어러개의 사선이 발생되는데요
이 사선의 발생지점에 사선은 제거하고 대신 가로선이 발생되었으면 합니다
가로선의 두께와 색상은 사용자 지정이 가능토록 부탁드립니다
감사합니다!
input : af(0.2), maxAF(0.3);
input : 텍스트출력(0),선굵기(1);
var : T(0),cnt(0),count(0);
var : HH1(0),LL1(0),HD1(0),HT1(0),LD1(0),LT1(0),day1(0),day0(0),TL3(0);
var : TL1(0),TL2(0),tx1(0),tx2(0),tx11(0),tx22(0),idx(0),tx99(0),tx88(0);
Array : HD[20](0),HT[20](0),HH[20](0),LD[20](0),LT[20](0),LL[20](0);
Array : HI[20](0),LI[20](0);
var1 = CSar(af,maxAF);
if bdate != bdate[1] Then
{
day0 = sdate;
day1 = day0[1];
}
if crossup(c,var1) Then
{
T = 1;
HH[0] = H;
HD[0] = sdate;
HT[0] = stime;
HI[0] = index;
for cnt = 1 to 19
{
HD[cnt] = HD[cnt-1][1];
HT[cnt] = HT[cnt-1][1];
HH[cnt] = HH[cnt-1][1];
HI[cnt] = HI[cnt-1][1];
}
if LL[0] > 0 Then
{
Condition1 = false;
for cnt = 1 to 19
{
if Condition1 == false and abs(LL[0]-LL[cnt]) >= PriceScale*1 and LD[cnt] <= day1 Then
{
Condition1 = true;
TL1 = TL_New(LD[cnt],LT[cnt],LL[cnt],LD[0],LT[0],LL[0]);
TL_SetSize(TL1,선굵기);
TL_SetColor(TL1,magenta);
idx = abs(LI[0]-LI[cnt]);
//tx99 = Text_New(LD[0],LT[0],LL[0],NumToStr(idx,0));
Text_SetColor(tx99,magenta);
Text_SetStyle(tx99,0,3);
Text_SetBold(tx99,2);
PlaySound("C:₩예스트레이더(x64)₩data₩Sound₩.wav");
}
}
}
}
if CrossDown(c,var1) Then
{
T = -1;
LL[0] = L;
LD[0] = sdate;
LT[0] = stime;
LI[0] = index;
for cnt = 1 to 19
{
LD[cnt] = LD[cnt-1][1];
LT[cnt] = LT[cnt-1][1];
LL[cnt] = LL[cnt-1][1];
LI[cnt] = LI[cnt-1][1];
}
if HH[0] > 0 Then
{
Condition2 = false;
for cnt = 1 to 19
{
if Condition2 == false and abs(HH[0]-HH[cnt]) >= PriceScale*1 and HD[cnt] <= day1 Then
{
Condition2 = true;
TL2 = TL_New(HD[cnt],HT[cnt],HH[cnt],HD[0],HT[0],HH[0]);
TL_SetSize(TL2,선굵기);
TL_SetColor(TL2,blue);
idx = abs(HI[0]-HI[cnt]);
//tx99 = Text_New(HD[0],HT[0],HH[0],NumToStr(idx,0));
Text_SetColor(tx99,blue);
Text_SetStyle(tx99,0,3);
Text_SetBold(tx99,2);
PlaySound("C:₩예스트레이더(x64)₩data₩Sound₩.wav");
}
}
}
}
if T == 1 then
{
if H > HH[0] Then
{
HH[0] = H;
HD[0] = sdate;
HT[0] = stime;
if Condition3 == false and abs(HH[0]-HH[cnt]) >= PriceScale*1 and HD[cnt] <= day1 Then
{
Condition3 = true;
TL3 = TL_New(HD[cnt],HT[cnt],HH[cnt],HD[0],HT[0],HH[0]);
TL_SetSize(TL3,선굵기);
TL_SetColor(TL3,magenta);
idx = abs(HI[0]-HI[cnt]);
//tx88 = Text_New(HD[0],HT[0],HH[0],NumToStr(idx,0));
Text_SetColor(tx88,magenta);
Text_SetStyle(tx88,0,3);
Text_SetBold(tx88,2);
PlaySound("C:₩예스트레이더(x64)₩data₩Sound₩.wav");
}
}
}
if T == -1 then
{
if L < LL[0] Then
{
LL[0] = L;
LD[0] = sdate;
LT[0] = stime;
if Condition3 == false and abs(LL[0]-LL[cnt]) >= PriceScale*1 and LD[cnt] <= day1 Then
{
Condition3 = true;
TL3 = TL_New(LD[cnt],LT[cnt],LL[cnt],LD[0],LT[0],LL[0]);
TL_SetSize(TL3,선굵기);
TL_SetColor(TL3,blue);
idx = abs(LI[0]-LI[cnt]);
//tx88 = Text_New(LD[0],LT[0],LL[0],NumToStr(idx,0));
Text_SetColor(tx88,blue);
Text_SetStyle(tx88,0,3);
Text_SetBold(tx88,2);
PlaySound("C:₩예스트레이더(x64)₩data₩Sound₩.wav");
}
}
}
2024-02-05
472
글번호 176417
지표
답변완료
문의드립니다.
안녕하세요
지표 변화 문의드릴 수 있을지요
도움주셔서 항상 감사드립니다.
//@version=2
study(title = "Smoothed", shorttitle="Candles", overlay=true)
len=input(10)
o=ema(open,len)
c=ema(close,len)
h=ema(high,len)
l=ema(low,len)
haclose = (o+h+l+c)/4
haopen = na(haopen[1]) ? (o + c)/2 : (haopen[1] + haclose[1]) / 2
hahigh = max (h, max(haopen,haclose))
halow = min (l, min(haopen,haclose))
len2=input(10)
o2=ema(haopen, len2)
c2=ema(haclose, len2)
h2=ema(hahigh, len2)
l2=ema(halow, len2)
col=o2>c2 ? red : lime
plotcandle(o2, h2, l2, c2, title="smoothed", color=col)
2024-02-05
646
글번호 176405
지표