想請教寶塔線的語法應該怎麼寫呢?
input: Length(4);
variable: _Index(0), HV(0), LV(0);
settotalbar(200);
HV = Close[1];
LV = Close[1];
for _Index = 2 to Length + 1
begin
if HV <= Close[_Index] then HV = Close[_Index];
if LV >= Close[_Index] then LV = Close[_Index];
end;
if Close[1] < LV[1] and Close > HV then ret=1;
有看過其他網友寫的,如上
但是想請問這樣子抓得出前一天續綠,今天翻紅的個股嗎?
謝謝
1 評論