예스스탁
예스스탁 답변
2024-10-31 15:20:44
안녕하세요
예스스탁입니다.
Input : P(10);
Input: 진입옵션1_2(1),진입날짜(20241029),진입시간(142100),진입방향1_2(1);
Input: 목표(1.5), SL(0.7), add1(30), stop1(0.05), n1(1), n2(2);
var:R(0);
R = RSI(P);
if MarketPosition == 0 and 진입옵션1_2 == 1 and sTime >= 90000 and sTime <= 143000 Then
{
if CrossUp(R,30) Then
Buy("b1",OnClose,Def,n1);
if CrossDown(R,70) Then
Sell("s1",OnClose,Def,n1);
}
if MarketPosition == 0 and 진입옵션1_2 == 2 and sDate == 진입날짜 and sTime == 진입시간 then
{
if 진입방향1_2 == 1 Then
Buy("b12",OnClose,Def,n1);
if 진입방향1_2 == 2 Then
Sell("s12",OnClose,Def,n1);
}
if MarketPosition == 1 Then
{
if MaxEntries == 1 Then
{
Buy("b2",AtStop,EntryPrice+목표*(add1/100),n2);
ExitLong("bx1",AtStop,EntryPrice-SL);
}
if MaxEntries == 2 Then
ExitLong("bx2",AtStop,EntryPrice+stop1);
}
if MarketPosition == -1 Then
{
if MaxEntries == 1 Then
{
Sell("s2",AtStop,EntryPrice-목표*(add1/100),n2);
ExitShort("sx1",AtStop,EntryPrice+SL);
}
if MaxEntries == 2 Then
ExitShort("sx2",AtStop,EntryPrice-stop1);
}
SetStopProfittarget(목표,PointStop);
SetStopEndofday(150000);
즐거운 하루되세요
> 에구머니 님이 쓴 글입니다.
> 제목 : 수식 문의
> 안녕하세요?
잘 작동하지 않아서 재문의 드립니다.
이 방향의 문의는 몇 번 드렸었는데, 늘 잘 작동되지 않았었습니다.
고로, 이번에는 꼼꼼한 확인을 부탁드립니다.
참, 3분봉 입니다.
감사합니다.