大家好
不好意思想請問一下我應該如何寫出
投信買超超過特定比例的價格與時間
大家好
不好意思想請問一下我應該如何寫出
投信買超超過特定比例的價格與時間
看看這樣是不是你要的。
if barfreq<>"D" then raiseRunTimeError("限用日頻率");
input: Ratio(1,"投信買賣超占成交量比例(%)");
if v>0 then
begin
value1=100*GetField("投信買賣超張數")/v;
if value1>Ratio then
begin
Plot1(date,"日期");
Plot2(c,"收盤價");
Plot3(value1,"投信買賣超占比");
print(date,c,value1);
end;
end;
1 評論