예스스탁
예스스탁 답변
2024-08-22 14:30:02
안녕하세요
예스스탁입니다.
var1 = (highest(H,9)+lowest(L,9))/2;
if MarketPosition <= 0 and CrossUp(C,var1) Then
Buy();
if MarketPosition >= 0 and 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틱씩 표시하고 싶습니다