像照片這樣 圈起來地方
開盤或盤中爆量用警示功能的話語法要怎麼寫
小編咧
Hello 書生,
您可以使用成交量和漲跌幅來判斷。
舉例來說,可以在input設定數值,當根Bar的成交量大於多少且近幾根Bar的漲幅大於多少才進場:
input: volume_limit(500, "成交量限制"), rate_limit(1, "漲幅限制"), rate_len(3, "漲幅期數");
if volume > volume_limit and rateofchange(close, rate_len) > rate_limit then ret = 1;
2 評論