小幫手您好 以下是我的威廉指標.我想要雷達不要跑上個小時的找出來的標的..因為都會找到漲停板的股票.想要找這個小時出新標的
想麻煩小幫手幫我.幫我補充或調整謝謝
// 選股法: (v2)中小型股
// 作多, 60分鐘資料,
//
if barfreq<> "Min" and barinterval <> 5 then raiseruntimeerror("本腳本只限60分鐘線");
SetBackBar(6000); // 100天的日資料
input:length(8, "威廉天期"), N(-50, "威廉門檻值(%)");
value1 = PercentR(length) - 100; //計算8期的威廉指標
if close < 100
and close > 5
and volume >3000
and close>close[1]*1.02
then ret=1;
7 評論