답변완료
수식 수정 부탁드립니다.
> 1.IF A 조건 then
{
Buy("b",OnClosE,DeF,진입수량);
}
IF B 조건 then
{
Buy("b1",OnClosE,DeF,진입수량);
}을 한문장으로 표현하는 식을
if a조건 or b조건 then
{buy}으로 답으로 주셨습니다.
추가로 여쭙니다.
한문장으로 표현하면서 매수명을 b와 b1으로 구분하려고 합니다. 그것이 가능한지요?
2024-10-30
719
글번호 184785
시스템
답변완료
문의드립니다
input : P1(10),P2(20);
var1 = ema(C,P1);
var2 = ema(c,P2);
if CrossUp(C,var1) and CrossUp(C,var2) and c >= var2+0.05 Then
{
Buy();
PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav");
}
if CrossDown(C,var1) and CrossDown(C,var2) and c <= var2-0.05 Then
{
Sell();
PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav");
}
..................................................
어제 구현해 주신 수식입니다
예비신호 출현때만 경보음이 들려야 하는데
예비신호가 나오지 않음에도 가격만 변해도 계속 경보음이 들립니다
살펴봐주세요
감사합니다
2024-10-30
899
글번호 184782
시스템
답변완료
Data3에 대한 식으로 수정 부탁드립니다.
input : len1(20),len2(40);
var : mt(0,Data1),sum1(0,Data1),sum2(0,Data1),TDI(0,Data1);
mt = Abs(Data1(C)-Data1(C[len1-1]));
sum1 = AccumN(mt,len1);
sum2 = AccumN(mt,len2);
TDI = sum1-(sum2-sum1);
Var1 = Ma(TDI,9);
If TDI > Var1 Then {
plot1(TDI,"Trend Detection Index", RgB(128,0,0));
}
If TDI < Var1 Then {
plot1(TDI,"Trend Detection Index",LBlue );
}
Plot2(Var1,"10이평선");
2024-10-30
715
글번호 184769
지표
답변완료
문의드립니다.
안녕하세요
키움 신호수식입니다.
예스트레이더 종목검색식으로 변경 부탁 드리겠습니다.
AA=highest(V(1), 10);
// crossup 70% of 10 candel's highest volume
BB=crossup(V,AA*0.7);
CC=highest(C(1), 10);
// crossup 10 candel's highest
DD=crossup(C, CC);
EE=(highest(high(25),9)+lowest(low(25),9)+highest(high(25),26)+lowest(low(25),26))/4;
FF=(highest(high(25),52)+lowest(low(25),52))/2;
BB and DD and EE < C and FF < C
2024-10-30
558
글번호 184768
검색
답변완료
청산수식 체크
아래 수식을 하나의 수식으로 운영하고 있습니다.
청산수식에 오류는 없는지 살펴주십시요.
항상 고맙습니다.
********************************************************************************
input : upls(1.5),uptr1(0),uptr2(2),upgl(6);
input : uupls(1.5),uuptr1(0),uuptr2(2),uupgl(6);
input : dnls(2.5),dntr1(1.75),dntr2(2),dngl(2.7);
input : ddnls(1.5),ddntr1(0),ddntr2(4.75),ddngl(10);
if MarketPosition== 1 Then
{
if IsEntryName("b1") == true Then
{
SetStopLoss(upls,PointStop);
SetStopTrailing(uptr2,uptr1,PointStop,1);
SetStopProfittarget(upgl,PointStop);
}
Else if IsEntryName("고갱진입") == true Then
{
SetStopLoss(uupls,PointStop);
SetStopTrailing(uuptr2,uuptr1,PointStop,1);
SetStopProfittarget(uupgl,PointStop);
}
}
else if MarketPosition== -1 Then
{
if IsEntryName("s1") == true Then
{
SetStopLoss(dnls,PointStop);
SetStopTrailing(dntr2,dntr1,PointStop,1);
SetStopProfittarget(dngl,PointStop);
}
Else if IsEntryName("저갱진입") == true Then
{
SetStopLoss(ddnls,PointStop);
SetStopTrailing(ddntr2,ddntr1,PointStop,1);
SetStopProfittarget(ddngl,PointStop);
}
}
Else
{
SetStopLoss(0);
SetStopProfittarget(0);
}
2024-11-06
594
글번호 184765
시스템
답변완료
문의드립니다
안녕하세요
항삼감사하고 고맙습니다
다름이 아니라 아래 코드가 시가로부터20틱 내인데 이게 잘 지켜지지 않아서 이렇게 글을 남깁니다
아래에 사진을 보시면 아시겠지만 8시15분쯤은 안들어갔고 나중에 8시39분에 들어간건시가기준20틱위에서 진입시도했고 그다음 눌림도 20틱 위에서 시도했습니다. 어디가 문제인지 살펴주십시요
if (T <= 0 && 진입 == true &&
ChartEx1.GetLow(1, 1) > ChartEx1.GetLow(1, 2) && ChartEx1.GetLow(1, 2) < ChartEx1.GetLow(1, 3) &&
ChartEx1.GetLow(1, 2) > MarketData1.open && ChartEx1.GetLow(1, 2) < MarketData1.open + MarketData1.tickSize*20) {
if (T != 1) { // 이전에 매수하지 않았는지 확인
T = 1; // 상태 변경
BEID = Account1.OrderBuy(Main.GetOrderCode(MarketData1.code), 진입수량, MarketData1.Ask(5), 2);
BuyPrice = MarketData1.current;
BX = 0;
Main.MessageList("매수진입:상승반전 선물매수");
}
}
2024-10-30
576
글번호 184759
시스템