幫手中持股設定賣出訊號出現時的通知機制

By | 2015-12-15

這一波快速的拉回,到昨天指數跌了500點,個股跌超過15%的一大堆,小弟我很慘,有一檔股票跌了兩成,之所以這麼慘,是因為前幾天的下跌時我在忙,看它跌多了就想說等反彈再來賣,沒想到後來就一直破底。

為了防止這樣的慘案再次發生,我今天寫了一個腳本,準備搭配XQ新開放的自動下單機制,讓電腦幫我賣股票。

 

這個腳本如下:

1//DMI賣出訊號
2 input:Length(14); setinputname(1,"計算期數");
3 variable: pdi(0), ndi(0), adx_value(0);
4 DirectionMovement(Length, pdi, ndi, adx_value);
5 if pdi<pdi[1] and ndi>ndi[1] and ndi crosses over pdi
6 then ret=1
7 else begin
8   //KD高檔死亡交叉
9   input: Length1(9), RSVt(3), Kt(3), HighBound(75);
10   SetInputName(1, "計算期數");
11   SetInputName(2, "RSVt權數");
12   SetInputName(3, "Kt權數");
13   SetInputName(4, "高檔區");
14   variable: rsv(0), k(0), _d(0);
15   Stochastic(Length1, RSVt, Kt, rsv, k, _d);
16   if k>HighBound and k crosses under _d
17   then ret=1
18   else begin
19     //MTM由正轉負
20     input: Length2(10); SetInputName(1, "期數");
21     if momentum(close,Length2) crosses under 0
22     then ret=1
23     else begin
24       //投信法人都賣超
25       if Open < Close[1] and Close < Close[1] and
26          GetField("外資買賣超")[1]<0 and GetField("投信買賣超")[1]<0
27       then ret=1
28       else begin
29         //MACD出現賣出訊號
30         input: FastLength(12), SlowLength(26), MACDLength(9);
31         SetInputName(1, "DIF短期期數");
32         SetInputName(2, "DIF長期期數");
33         SetInputName(3, "MACD天數");
34         variable: difValue(0), macdValue(0), oscValue(0);
35         MACD(weightedclose(), FastLength, SlowLength, MACDLength, difValue, macdValue, oscValue);
36         if oscValue Crosses Below 0
37         then ret=1
38         else begin
39           //RSI高檔死亡交叉
40           input: Length4(6); SetInputName(1, "短期期數");
41           input: Length5(12); SetInputName(2, "長期期數");
42           input: HighBound1(75); SetInputName(3, "高檔區");
43           value1=RSI(close,Length4);
44           value2=RSI(close,Length5);
45           if value1 crosses under value2 and value1>HighBound1
46           then ret=1
47           else begin
48             //一舉跌破多根均線
49             input: shortlength(5); setinputname(1,"短期均線期數");
50             input: midlength(10); setinputname(2,"中期均線期數");
51             input: Longlength(20); setinputname(3,"長期均線期數");
52             variable: shortaverage(0);
53             variable: midaverage(0);
54             variable: Longaverage(0);
55             shortaverage=Average(close,shortlength);
56             midaverage=Average(close,midlength) ;
57             Longaverage = Average(close,Longlength);
58             if close crosses under shortaverage and
59                close crosses under midlength and
60                close crosses under Longaverage
61             then ret=1;
62           end;
63         end;
64       end;
65     end;
66   end;
67end;

透過這個腳本,只要系統有出現以下七種狀況的其中一種,電腦就會自動通知我

1.DMI賣出訊號

2.KD高檔死亡交叉

3.MTM由正轉負

4.投信外資都賣超

5.MACD出現賣出訊號

6.RSI高檔死亡交叉

7.一舉跌破多根均線

然後把這個腳本拿去設成策略雷達,設定的畫面如下

121501

執行商品設成庫存,如此一來,當出現賣出訊號時就會通知我了。

 

如果您的交易戶XQ有Support 的話,您也可以像我一樣,直接把單子下出去,不過目前這功能必須自行填交易張數,不能自動帶庫存。

 

1125