예스스탁
예스스탁 답변
2025-03-19 13:54:58
안녕하세요
예스스탁입니다.
{}치기를 하셔야 합니다.
if문에 포함되는 실행문이 2개이상이면 {}로 묶으셔야 합니다.
if 조건 then
{
실행문
실행문
}
else
{
실행문
실행문
}
즐거운 하루되세요
> 목마와숙녀 님이 쓴 글입니다.
> 제목 : 문의
>
청산수식에 트레일링스탑을 추가했더니 첨부파일처럼 오류가 발생합니다.
수정하여 주십시요.
항상 고맙습니다.
******************************************************************************************
안녕하세요
예스스탁입니다.
문의하신 내용은 각 포지션 진입이 첫진입인지 두번째 인지로 구분하시면 됩니다.
input : 손절1(1.25),손절2(2.50);
input : 손절3(2.50),손절4(1.25);
var : entry(0);
if Bdate != Bdate[1] Then
entry = 0;
if (MarketPosition != 0 and MarketPosition != MarketPosition[1]) or
(MarketPosition == MarketPosition[1] and TotalTrades > TotalTrades[1]) Then
entry = entry+1;
if MarketPosition == 1 Then
{
//매수진입이 첫진입일때
if entry == 1 Then
SetStopLoss(손절1,PointStop);
Else //매수진입이 두번째진입일때
SetStopLoss(손절3,PointStop);
}
if MarketPosition == -1 Then
{
//매도진입이 첫진입일때
if entry == 1 Then
SetStopLoss(손절2,PointStop);
Else //매수진입이 두번째진입일때
SetStopLoss(손절4,PointStop);
}
즐거운 하루되세요
> 목마와숙녀 님이 쓴 글입니다.
> 제목 : 문의
> 1) 청산수식 부탁드립니다.
리버스 거래이고
진입은 2번 입니다. ( 매수진입명 "a", 매도진입명 "b" )
매수신호가 먼저 나오면 매수거래 매도거래 하고 거래 종료
매도신호가 먼저 나오면 매도거래 매수거래 하고 거래 종료
매수신호가 먼저 나왔을 때와 매도신호가 먼저 나왔을 때를
구분하여 손절을 적용하고 싶습니다.
input : 손절1(1.25),손절2(2.50);
input : 손절3(2.50),손절4(1.25);
매수진입이 먼저 발생했을 때
진입명이 "a"
SetStopLoss(손절1,PointStop);
진입명이 "b"
SetStopLoss(손절2,PointStop);
매도진입이 먼저 발생했을 때
진입명이 "a"
SetStopLoss(손절3,PointStop);
진입명이 "b"
SetStopLoss(손절4,PointStop);
항상 고맙습니다.
목마와숙녀
2025-03-19 16:02:40
말씀하신대로 수정했는데 똑같은 에러메세지가 뜹니다.
input : 손절1(1.25),손절2(2.50);
input : 손절3(2.50),손절4(1.25);
var : entry(0);
if Bdate != Bdate[1] Then
entry = 0;
if (MarketPosition != 0 and MarketPosition != MarketPosition[1]) or
(MarketPosition == MarketPosition[1] and TotalTrades > TotalTrades[1]) Then
entry = entry+1;
if MarketPosition == 1 Then
{
//매수진입이 첫진입일때
if entry == 1 Then
SetStopLoss(손절1,PointStop);
SetStopTrailing(1,0,PointStop);
Else //매수진입이 두번째진입일때
SetStopLoss(손절3,PointStop);
SetStopTrailing(2,0,PointStop);
}
Else
if MarketPosition == -1 Then
{
//매도진입이 첫진입일때
if entry == 1 Then
SetStopLoss(손절2,PointStop);
SetStopTrailing(3,PointStop);
Else //매수진입이 두번째진입일때
SetStopLoss(손절4,PointStop);
SetStopTrailing(4,0,PointStop);
}
> 예스스탁 님이 쓴 글입니다.
> 제목 : Re : 문의
>
안녕하세요
예스스탁입니다.
{}치기를 하셔야 합니다.
if문에 포함되는 실행문이 2개이상이면 {}로 묶으셔야 합니다.
if 조건 then
{
실행문
실행문
}
else
{
실행문
실행문
}
즐거운 하루되세요
> 목마와숙녀 님이 쓴 글입니다.
> 제목 : 문의
>
청산수식에 트레일링스탑을 추가했더니 첨부파일처럼 오류가 발생합니다.
수정하여 주십시요.
항상 고맙습니다.
******************************************************************************************
안녕하세요
예스스탁입니다.
문의하신 내용은 각 포지션 진입이 첫진입인지 두번째 인지로 구분하시면 됩니다.
input : 손절1(1.25),손절2(2.50);
input : 손절3(2.50),손절4(1.25);
var : entry(0);
if Bdate != Bdate[1] Then
entry = 0;
if (MarketPosition != 0 and MarketPosition != MarketPosition[1]) or
(MarketPosition == MarketPosition[1] and TotalTrades > TotalTrades[1]) Then
entry = entry+1;
if MarketPosition == 1 Then
{
//매수진입이 첫진입일때
if entry == 1 Then
SetStopLoss(손절1,PointStop);
Else //매수진입이 두번째진입일때
SetStopLoss(손절3,PointStop);
}
if MarketPosition == -1 Then
{
//매도진입이 첫진입일때
if entry == 1 Then
SetStopLoss(손절2,PointStop);
Else //매수진입이 두번째진입일때
SetStopLoss(손절4,PointStop);
}
즐거운 하루되세요
> 목마와숙녀 님이 쓴 글입니다.
> 제목 : 문의
> 1) 청산수식 부탁드립니다.
리버스 거래이고
진입은 2번 입니다. ( 매수진입명 "a", 매도진입명 "b" )
매수신호가 먼저 나오면 매수거래 매도거래 하고 거래 종료
매도신호가 먼저 나오면 매도거래 매수거래 하고 거래 종료
매수신호가 먼저 나왔을 때와 매도신호가 먼저 나왔을 때를
구분하여 손절을 적용하고 싶습니다.
input : 손절1(1.25),손절2(2.50);
input : 손절3(2.50),손절4(1.25);
매수진입이 먼저 발생했을 때
진입명이 "a"
SetStopLoss(손절1,PointStop);
진입명이 "b"
SetStopLoss(손절2,PointStop);
매도진입이 먼저 발생했을 때
진입명이 "a"
SetStopLoss(손절3,PointStop);
진입명이 "b"
SetStopLoss(손절4,PointStop);
항상 고맙습니다.
예스스탁
예스스탁 답변
2025-03-19 17:29:32
안녕하세요
예스스탁입니다.
input : 손절1(1.25),손절2(2.50);
input : 손절3(2.50),손절4(1.25);
var : entry(0);
if Bdate != Bdate[1] Then
entry = 0;
if (MarketPosition != 0 and MarketPosition != MarketPosition[1]) or
(MarketPosition == MarketPosition[1] and TotalTrades > TotalTrades[1]) Then
entry = entry+1;
if MarketPosition == 1 Then
{
//매수진입이 첫진입일때
if entry == 1 Then
{
SetStopLoss(손절1,PointStop);
SetStopTrailing(1,0,PointStop);
}
Else //매수진입이 두번째진입일때
{
SetStopLoss(손절3,PointStop);
SetStopTrailing(2,0,PointStop);
}
}
Else if MarketPosition == -1 Then
{
//매도진입이 첫진입일때
if entry == 1 Then
{
SetStopLoss(손절2,PointStop);
SetStopTrailing(3,PointStop);
}
Else //매수진입이 두번째진입일때
{
SetStopLoss(손절4,PointStop);
SetStopTrailing(4,0,PointStop);
}
}
즐거운 하루되세요
> 목마와숙녀 님이 쓴 글입니다.
> 제목 : Re : Re : 문의
> 말씀하신대로 수정했는데 똑같은 에러메세지가 뜹니다.
input : 손절1(1.25),손절2(2.50);
input : 손절3(2.50),손절4(1.25);
var : entry(0);
if Bdate != Bdate[1] Then
entry = 0;
if (MarketPosition != 0 and MarketPosition != MarketPosition[1]) or
(MarketPosition == MarketPosition[1] and TotalTrades > TotalTrades[1]) Then
entry = entry+1;
if MarketPosition == 1 Then
{
//매수진입이 첫진입일때
if entry == 1 Then
SetStopLoss(손절1,PointStop);
SetStopTrailing(1,0,PointStop);
Else //매수진입이 두번째진입일때
SetStopLoss(손절3,PointStop);
SetStopTrailing(2,0,PointStop);
}
Else
if MarketPosition == -1 Then
{
//매도진입이 첫진입일때
if entry == 1 Then
SetStopLoss(손절2,PointStop);
SetStopTrailing(3,PointStop);
Else //매수진입이 두번째진입일때
SetStopLoss(손절4,PointStop);
SetStopTrailing(4,0,PointStop);
}
> 예스스탁 님이 쓴 글입니다.
> 제목 : Re : 문의
>
안녕하세요
예스스탁입니다.
{}치기를 하셔야 합니다.
if문에 포함되는 실행문이 2개이상이면 {}로 묶으셔야 합니다.
if 조건 then
{
실행문
실행문
}
else
{
실행문
실행문
}
즐거운 하루되세요
> 목마와숙녀 님이 쓴 글입니다.
> 제목 : 문의
>
청산수식에 트레일링스탑을 추가했더니 첨부파일처럼 오류가 발생합니다.
수정하여 주십시요.
항상 고맙습니다.
******************************************************************************************
안녕하세요
예스스탁입니다.
문의하신 내용은 각 포지션 진입이 첫진입인지 두번째 인지로 구분하시면 됩니다.
input : 손절1(1.25),손절2(2.50);
input : 손절3(2.50),손절4(1.25);
var : entry(0);
if Bdate != Bdate[1] Then
entry = 0;
if (MarketPosition != 0 and MarketPosition != MarketPosition[1]) or
(MarketPosition == MarketPosition[1] and TotalTrades > TotalTrades[1]) Then
entry = entry+1;
if MarketPosition == 1 Then
{
//매수진입이 첫진입일때
if entry == 1 Then
SetStopLoss(손절1,PointStop);
Else //매수진입이 두번째진입일때
SetStopLoss(손절3,PointStop);
}
if MarketPosition == -1 Then
{
//매도진입이 첫진입일때
if entry == 1 Then
SetStopLoss(손절2,PointStop);
Else //매수진입이 두번째진입일때
SetStopLoss(손절4,PointStop);
}
즐거운 하루되세요
> 목마와숙녀 님이 쓴 글입니다.
> 제목 : 문의
> 1) 청산수식 부탁드립니다.
리버스 거래이고
진입은 2번 입니다. ( 매수진입명 "a", 매도진입명 "b" )
매수신호가 먼저 나오면 매수거래 매도거래 하고 거래 종료
매도신호가 먼저 나오면 매도거래 매수거래 하고 거래 종료
매수신호가 먼저 나왔을 때와 매도신호가 먼저 나왔을 때를
구분하여 손절을 적용하고 싶습니다.
input : 손절1(1.25),손절2(2.50);
input : 손절3(2.50),손절4(1.25);
매수진입이 먼저 발생했을 때
진입명이 "a"
SetStopLoss(손절1,PointStop);
진입명이 "b"
SetStopLoss(손절2,PointStop);
매도진입이 먼저 발생했을 때
진입명이 "a"
SetStopLoss(손절3,PointStop);
진입명이 "b"
SetStopLoss(손절4,PointStop);
항상 고맙습니다.