input : Price(52300),진입횟수(1);
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 NextBarSdate == sDate and
CurrentDate == sDate and
NextBarStime >= 91500 and
H < price and
entry < 진입횟수 and
DayOpen < Price Then
Buy("b",AtStop,price);
-----------------------------------------------------------------------------------
현재 수식은 9시 15분까지 기다렸다가 작동하는 것으로 알고 있습니다.
상기 수식을 장 시작(09:00:00)과 동시에 당일 시초가가 지정한 가격(위의 경우 52300원)보다 낮을 경우에는 9시 15분까지 기다리지 않고 09:00:00부터 작동을 시작하여 장중 언제라도 52300원을 돌파하는 즉시 매수가 이뤄질 수 있도록 정정 부탁드립니다.
늘 노고에 감사드립니다.
답변 1
예스스탁
예스스탁 답변
2024-08-30 17:13:18
안녕하세요
예스스탁입니다.
input : Price(52300),진입횟수(1);
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 (NextBarSdate != sDate and NextBarSdate == CurrentDate and NextBarOpen < Price) or
(NextBarSdate == sDate and CurrentDate == sDate and
H < price and entry < 진입횟수 and DayOpen < Price) Then
Buy("b",AtStop,price);
즐거운 하루되세요
> autotra 님이 쓴 글입니다.
> 제목 : 수식 정정 문의
> input : Price(52300),진입횟수(1);
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 NextBarSdate == sDate and
CurrentDate == sDate and
NextBarStime >= 91500 and
H < price and
entry < 진입횟수 and
DayOpen < Price Then
Buy("b",AtStop,price);
-----------------------------------------------------------------------------------
현재 수식은 9시 15분까지 기다렸다가 작동하는 것으로 알고 있습니다.
상기 수식을 장 시작(09:00:00)과 동시에 당일 시초가가 지정한 가격(위의 경우 52300원)보다 낮을 경우에는 9시 15분까지 기다리지 않고 09:00:00부터 작동을 시작하여 장중 언제라도 52300원을 돌파하는 즉시 매수가 이뤄질 수 있도록 정정 부탁드립니다.
늘 노고에 감사드립니다.