Input : Period(14), LPercent(30);
if Crossdown(RSI(Period),LPercent) Then
Buy();
1회만 매수되도록 변경 부탁 드립니다. (매일 1회씩만 매수요 )
답변 1
예스스탁
예스스탁 답변
2022-04-11 13:33:45
안녕하세요
예스스탁입니다.
Input : Period(14), LPercent(30);
var : RSIV(0),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;
RSIV = RSI(Period);
if entry < 1 and Crossdown(RSIV,LPercent) Then
Buy();
즐거운 하루되세요
> 이름이 님이 쓴 글입니다.
> 제목 : 수식 부탁 드립니다.
> Input : Period(14), LPercent(30);
if Crossdown(RSI(Period),LPercent) Then
Buy();
1회만 매수되도록 변경 부탁 드립니다. (매일 1회씩만 매수요 )