답변완료
문의 드립니다
안녕하세요.
문의 부탁드립니다^^
If Crossup(value1, value2) then
{
Buy("매수");
}
if MarketPosition != 0 and BarsSinceEntry== 1 Then
Text_New(entrydate,EntryTime,EntryPrice+PriceScale*10,NumToStr(EntryPrice,0));
위 식에서 Buy("매수");
"매수" 글씨 대신 아래 수식 가격이 나오게 할 수 있나요?
그리고 가격 숫자가 너무 작아서 좀더 크게 하거나 숫자를 두껍게 바꿀수 있을까요?
즐거운하루되세요^^
2021-02-01
632
글번호 145975
지표
답변완료
수정부탁드립니다
친절한 설명에 감사드립니다
손익절1과 2가 서로 간섭을 안일으키게 수정 부탁드립니다~~~
input : 손절1(0),익절1(0),손절2(0),익절2(0);
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 MarketPosition == 0 and entry < 1 and H < dayopen+40 Then
{
buy("b1",Atstop,dayopen+40);
SetStopLoss(손절1,PointStop);
SetStopProfittarget(익절1,PointStop);
}
if MarketPosition == 0 and entry < 1 and L > dayopen-50 Then
{
buy("b",Atlimit,dayopen-50);
SetStopLoss(손절2,PointStop);
SetStopProfittarget(익절2,PointStop);
}
2021-02-01
622
글번호 145974
시스템
답변완료
수정좀 부탁드려요
var : tx(0);
Text_Delete(tx);
tx = Text_New(NextBarSdate,NextBarStime,NextBarOpen,NumToStr(NextBarOpen,2));
Text_SetStyle(tx,0,0);
위의 수식에
1. 종가 추가 부탁드립니다
2. 시가, 종가 모두에 라인좀 부탁드립니다
2021-02-01
563
글번호 145972
지표
답변완료
문위드립니다
input : per1(23.6),per2(38.2),per3(50.0),per4(61.8),per5(76.4);
var : HH(0),LL(0),OO(0),CC(0);
HH = DayHigh;
LL = DayLow;
if HH > 0 and LL > 0 then{
var1 = HH-(HH-LL)*(Per1/100);
var2 = HH-(HH-LL)*(Per2/100);
var3 = HH-(HH-LL)*(Per3/100);
var4 = HH-(HH-LL)*(Per4/100);
var5 = HH-(HH-LL)*(Per5/100);
plot1(var1+(var1-var2)*1);
plot2(var1+(var1-var2)*2);
plot3(var1);
plot4(var2);
plot5(var3);
plot6(var4);
plot7(var5);
plot8(var5-(var4-var5)*1);
plot9(var5-(var4-var5)*2);
}
1..월요일부터~~~토요일까지 나오게해주세요 위에것처럼
var : HH(0),LL(0),RR(0);
if stime == 101500 or (stime > 101500 and stime < 101500) Then{
HH = H;
LL = L;
}
if H > HH Then
HH = H;
if L < LL Then
LL = L;
RR = HH-LL;
plot1(HH);
plot2(HH-RR*0.236);
plot3(HH-RR*0.382);
plot4(HH-RR*0.500);
plot5(HH-RR*0.618);
plot6(HH-RR*0.764);
plot7(LL);
2,,분봉은 선이 나오는데 틱봉은 켄들이 맨위에 있고 선들은 전부다 아래 있습니다
무엇이 잘못 돼엇나요 수정부탁드립니다
2021-02-01
538
글번호 145971
지표