input : 익절(3),손절(1),거래횟수(3);
var : entry(0);
if Bdate != Bdate[1] Then
entry = 0;
if (MarketPosition != 0 and MarketPosition != MarketPosition[1]) or
(MarketPosition == MarketPosition[1] and TotalTrades > TotalTrades) Then
entry = entry+1;
if MarketPosition == 0 and entry < 거래횟수 and C > O and c > H[1] Then
Buy();
SetStopProfittarget(익절,PercentStop);
SetStopLoss(손절,PercentStop);
SetStopEndofday(151500);
매수
1. 현재 캔들이 양봉이고,
2. 직전(전일)캔들 고가 돌파
1,2번 조건이 모두 만족하면 매수
매도.
1. -1% 매도(손절)
2. +3% 매도
3. 오후 3시 15분 매도
위 조건으로 작성하여 주셨는데, 매수조건 전달이 잘못된거 같아 다시 부탁드립니다.
*수정
매수
1. 금일 현재가가 전일 고가를 돌파하고,
2. 금일 캔들이 양봉일 경우
1,2번 조건이 모두 만족하면 매수
매도.
1. -1% 매도(손절)
2. +3% 매도
3. 오후 3시 15분 매도
잘부탁드립니다.
답변 1
예스스탁
예스스탁 답변
2024-12-06 11:48:02
안녕하세요
예스스탁입니다.
input : 익절(3),손절(1),거래횟수(3);
var : entry(0);
if Bdate != Bdate[1] Then
entry = 0;
if (MarketPosition != 0 and MarketPosition != MarketPosition[1]) or
(MarketPosition == MarketPosition[1] and TotalTrades > TotalTrades) Then
entry = entry+1;
if MarketPosition == 0 and entry < 거래횟수 and C > DayOpen and crossup(c,DayHigh(1)) Then
Buy();
SetStopProfittarget(익절,PercentStop);
SetStopLoss(손절,PercentStop);
SetStopEndofday(151500);
즐거운 하루되세요
> 대한이 님이 쓴 글입니다.
> 제목 : 수식 수정 부탁드립니다.
> input : 익절(3),손절(1),거래횟수(3);
var : entry(0);
if Bdate != Bdate[1] Then
entry = 0;
if (MarketPosition != 0 and MarketPosition != MarketPosition[1]) or
(MarketPosition == MarketPosition[1] and TotalTrades > TotalTrades) Then
entry = entry+1;
if MarketPosition == 0 and entry < 거래횟수 and C > O and c > H[1] Then
Buy();
SetStopProfittarget(익절,PercentStop);
SetStopLoss(손절,PercentStop);
SetStopEndofday(151500);
매수
1. 현재 캔들이 양봉이고,
2. 직전(전일)캔들 고가 돌파
1,2번 조건이 모두 만족하면 매수
매도.
1. -1% 매도(손절)
2. +3% 매도
3. 오후 3시 15분 매도
위 조건으로 작성하여 주셨는데, 매수조건 전달이 잘못된거 같아 다시 부탁드립니다.
*수정
매수
1. 금일 현재가가 전일 고가를 돌파하고,
2. 금일 캔들이 양봉일 경우
1,2번 조건이 모두 만족하면 매수
매도.
1. -1% 매도(손절)
2. +3% 매도
3. 오후 3시 15분 매도
잘부탁드립니다.