예스스탁
예스스탁 답변
2025-04-03 11:09:37
안녕하세요
예스스탁입니다.
input : p(10);
var1 = ma(C,p);
if CrossUp(c,var1) Then
Buy();
if CrossDown(c,var1) Then
Sell();
input : 틱단위(10),글자크기(9);
var : pp(0),ll(0),tx(0);
if MarketPosition == 1 Then
{
pp = Floor((highest(H,BarsSinceEntry)-EntryPrice)/(PriceScale*틱단위));
if pp > pp[1] Then
{
tx = Text_New(sdate,stime,H+PriceScale*3,NumToStr(pp*틱단위,0)+"틱");
Text_SetStyle(tx,2,1);
Text_SetSize(tx,글자크기);
}
}
if MarketPosition == -1 Then
{
pp = Floor((EntryPrice-lowest(L,BarsSinceEntry))/(PriceScale*틱단위));
if pp > pp[1] Then
{
tx = Text_New(sdate,stime,L-PriceScale*3,NumToStr(pp*틱단위,0)+"틱");
Text_SetStyle(tx,2,0);
Text_SetSize(tx,글자크기);
}
}
즐거운 하루되세요
> 만강 님이 쓴 글입니다.
> 제목 : 문의 드립니다
>
안녕하세요
볼밴 (10,2.5)의 중심선을 기준으로 종가가 중심선을 상향 돌파하면 매수신호
하향 돌파하면 매도신호
10틱단위로 차트에 표시 가능하게 부탁 드립니다.변수는 수정가능하게 부탁 드립니다
감사합니다