커뮤니티
조금 수정해 주세요.
2015-01-06 20:05:54
119
글번호 81961
아래식을 조금 수정해 주세요.
<9시~09:30시 매수시>
-"당일의 시초가는 전일 종가대비 +8% 상승하지 않아야 하고"를
->당일의 고가는 전일 종가대비 +8% 미만이고(+8%이상 상승한 적이 있으면 매수금지)
<09:30~10:30시 매수시>
--"당일의 시초가는 전일 종가대비 +4% 상승하지 않아야 하고"를
->당일의 고가는 전일 종가대비 +4% 미만이고(+4%이상 상승한 적이 있으면 매수금지)
================================================
Var : Pivot(0),R1(0),R2(0),S1(0),S2(0);
var : vol1(0),vol2(0),vol3(0);
Pivot = (DayHigh(1)+DayLow(1)+DayClose(1))/3;
R1 = 2*Pivot-DayLow(1);
R2 = Pivot+DayHigh(1)-DayLow(1);
S1 = 2*Pivot-DayHigh(1);
S2 = Pivot-DayHigh(1)+DayLow(1);
if stime >= 090000 and stime < 093000 and
MarketPosition == 0 and
ExitDate(1) != sdate and
CrossDown(c,Pivot+PriceScale*2) and
C < DayClose(1)*1.08 And
dayopen > Pivot*1.01 Then
buy();
if stime >= 093000 and stime < 103000 and
MarketPosition == 0 and
ExitDate(1) != sdate and
CrossDown(c,Pivot+PriceScale*2) and
C < DayClose(1)*1.04 And
dayopen > Pivot*1.01 Then
buy();
if MarketPosition == 1 then{
if CodeCategoryEx == 11 and BasePrice < 50000 Then{
vol1 = int(int(CurrentContracts*0.20)/10)*10;
vol2 = int(int(CurrentContracts*0.25)/10)*10;
vol3 = int(int(CurrentContracts*0.50)/10)*10;
}
Else{
vol1 = int(CurrentContracts*0.20);
vol2 = int(CurrentContracts*0.25);
vol3 = int(CurrentContracts*0.50);
}
ExitLong("bx1",atlimit,EntryPrice*1.065,"",vol1,1);
ExitLong("bx2",atlimit,EntryPrice*1.070,"",vol2,1);
ExitLong("bx3",atlimit,EntryPrice*1.075,"",vol3,1);
ExitLong("bx4",atlimit,EntryPrice*1.080);
if highest(H,BarsSinceEntry) >= EntryPrice*1.050 Then
exitlong("bx",AtStop,EntryPrice*1.040);
}
SetStopLoss(4.6,PercentStop);
답변 1
예스스탁 예스스탁 답변
2015-01-07 10:15:12
안녕하세요
예스스탁입니다.
Var : Pivot(0),R1(0),R2(0),S1(0),S2(0);
var : vol1(0),vol2(0),vol3(0);
Pivot = (DayHigh(1)+DayLow(1)+DayClose(1))/3;
R1 = 2*Pivot-DayLow(1);
R2 = Pivot+DayHigh(1)-DayLow(1);
S1 = 2*Pivot-DayHigh(1);
S2 = Pivot-DayHigh(1)+DayLow(1);
if stime >= 090000 and stime < 093000 and
MarketPosition == 0 and
ExitDate(1) != sdate and
CrossDown(c,Pivot+PriceScale*2) and
DayHigh < DayClose(1)*1.08 And
dayopen > Pivot*1.01 Then
buy();
if stime >= 093000 and stime < 103000 and
MarketPosition == 0 and
ExitDate(1) != sdate and
CrossDown(c,Pivot+PriceScale*2) and
dayhigh < DayClose(1)*1.04 And
dayopen > Pivot*1.01 Then
buy();
if MarketPosition == 1 then{
if CodeCategoryEx == 11 and BasePrice < 50000 Then{
vol1 = int(int(CurrentContracts*0.20)/10)*10;
vol2 = int(int(CurrentContracts*0.25)/10)*10;
vol3 = int(int(CurrentContracts*0.50)/10)*10;
}
Else{
vol1 = int(CurrentContracts*0.20);
vol2 = int(CurrentContracts*0.25);
vol3 = int(CurrentContracts*0.50);
}
ExitLong("bx1",atlimit,EntryPrice*1.065,"",vol1,1);
ExitLong("bx2",atlimit,EntryPrice*1.070,"",vol2,1);
ExitLong("bx3",atlimit,EntryPrice*1.075,"",vol3,1);
ExitLong("bx4",atlimit,EntryPrice*1.080);
if highest(H,BarsSinceEntry) >= EntryPrice*1.050 Then
exitlong("bx",AtStop,EntryPrice*1.040);
}
SetStopLoss(4.6,PercentStop);
즐거운 하루되세요
> 쌀사비팔 님이 쓴 글입니다.
> 제목 : 조금 수정해 주세요.
> 아래식을 조금 수정해 주세요.
<9시~09:30시 매수시>
-"당일의 시초가는 전일 종가대비 +8% 상승하지 않아야 하고"를
->당일의 고가는 전일 종가대비 +8% 미만이고(+8%이상 상승한 적이 있으면 매수금지)
<09:30~10:30시 매수시>
--"당일의 시초가는 전일 종가대비 +4% 상승하지 않아야 하고"를
->당일의 고가는 전일 종가대비 +4% 미만이고(+4%이상 상승한 적이 있으면 매수금지)
================================================
Var : Pivot(0),R1(0),R2(0),S1(0),S2(0);
var : vol1(0),vol2(0),vol3(0);
Pivot = (DayHigh(1)+DayLow(1)+DayClose(1))/3;
R1 = 2*Pivot-DayLow(1);
R2 = Pivot+DayHigh(1)-DayLow(1);
S1 = 2*Pivot-DayHigh(1);
S2 = Pivot-DayHigh(1)+DayLow(1);
if stime >= 090000 and stime < 093000 and
MarketPosition == 0 and
ExitDate(1) != sdate and
CrossDown(c,Pivot+PriceScale*2) and
C < DayClose(1)*1.08 And
dayopen > Pivot*1.01 Then
buy();
if stime >= 093000 and stime < 103000 and
MarketPosition == 0 and
ExitDate(1) != sdate and
CrossDown(c,Pivot+PriceScale*2) and
C < DayClose(1)*1.04 And
dayopen > Pivot*1.01 Then
buy();
if MarketPosition == 1 then{
if CodeCategoryEx == 11 and BasePrice < 50000 Then{
vol1 = int(int(CurrentContracts*0.20)/10)*10;
vol2 = int(int(CurrentContracts*0.25)/10)*10;
vol3 = int(int(CurrentContracts*0.50)/10)*10;
}
Else{
vol1 = int(CurrentContracts*0.20);
vol2 = int(CurrentContracts*0.25);
vol3 = int(CurrentContracts*0.50);
}
ExitLong("bx1",atlimit,EntryPrice*1.065,"",vol1,1);
ExitLong("bx2",atlimit,EntryPrice*1.070,"",vol2,1);
ExitLong("bx3",atlimit,EntryPrice*1.075,"",vol3,1);
ExitLong("bx4",atlimit,EntryPrice*1.080);
if highest(H,BarsSinceEntry) >= EntryPrice*1.050 Then
exitlong("bx",AtStop,EntryPrice*1.040);
}
SetStopLoss(4.6,PercentStop);
다음글
이전글