專業幫手您好!請教:
下面是.當日量突破.的腳本
若要同時濾除收盤價10元以下且濾除41~50 且濾除91~100 且濾除400元以上
請問您這個策略雷達腳本如何修改?謝謝您!
input:initialtime(090000); setinputname(1,"起算時間HHmmss");
input:timeline(100000); setinputname(2,"截止時間HHmmss");
settotalbar(50);
variable: intervalhighv(0);
variable: keyprice(0);
if date <> date[1] then intervalhighv =0 ;
if time >= initialtime and time <= timeline then
begin
intervalhighv = maxlist(volume,intervalhighv );
keyprice =close;
end;
if volume > intervalhighv and time >timeline and
close > keyprice and close>=open then ret=1;
2 評論