2013年12月26日 星期四

盤下出現帶量的火箭噴出


if barfreq <> "Tick" then RaiseRuntimeError("請設定頻率為TICK");
variable:BarNumberOfToday(0); if Date <> Date[1] then  BarNumberOfToday=1 else  BarNumberOfToday+=1;{記錄今天的Bar}

IF   Close < q_RefPrice and {還在盤下}
     Close> Close[1] and Close * Volume>250 and {觸發當筆上漲且買進幅度超過25}
     close > close[10]* 1.015  and  {快速漲1.5%}
     date[10] =currentdate and       
         close > close[5]   and         {連續漲升}
         timediff(time,time[10],"M")< 3  and   {3分鐘內急拉升}
         summation(volume,10)> 100{}   {上漲段總量要大於100}

then  ret=1;




沒有留言:

張貼留言