包寧傑帶狀操作法 - 財經

Heather avatar
By Heather
at 2008-08-24T21:54

Table of Contents

Parameter: UpColor(Red), DnColor(Green), CompBars(6),FastMA(10),SlowMA(20),MacdMA(9)
Variables: haClose(0), haOpen(0), haHigh(0), haLow(0), color(0),value1(0)

value2=MACD(close,FastMA,SlowMA)
value3= EMA(value1,MacdMA)
value4=value2-value1

If BarNumber = 1 then
haOpen = open
haClose = (Open + High + Low + Close) / 4
haHigh = MaxList( high, haOpen, haClose)
haLow = MinList( low, haOpen, haClose)
End If

if BarNumber > 1 then
haClose = (Open + High + Low + Close) / 4
haOpen = (haOpen [1] + haClose [1]) / 2
haHigh = MaxList(High, haOpen, haClose)
haLow = MinList(Low, haOpen, haClose)

if haClose > haOpen then
color = UpColor
else
color = DnColor
End If

for value1 = 1 to CompBars
if haOpen <= MaxList(haOpen[value1], haClose[value1]) and
haOpen >= MinList(haOpen[value1], haClose[value1]) and
haClose <= MaxList(haOpen[value1], haClose[value1]) and
haClose >= MinList(haOpen[value1], haClose[value1]) then
color = color[value1]
End If
End For

If Color = UpColor And Value1 Cross Over 0 And CurrentContracts <= 0 Then
buy("買進") next bar at market
End If

If Color = DnColor and value4<-20 And CurrentContracts >= 0 Then
sell("賣出") next bar at market
End If

end If


想請問一下大家,這份程式碼還需要加上些什麼東西?

--
Tags: 財經

All Comments

Margaret avatar
By Margaret
at 2008-08-29T04:01
請問你想問什麼?
Thomas avatar
By Thomas
at 2008-09-01T09:56
你的MACD的式子,value1,2,3,不用刻意改成2,3,4
Carol avatar
By Carol
at 2008-09-06T09:11
看的懂的人還是看得懂,看不懂的人還是看不懂!

HTS取一分K棒平均的問題

Ida avatar
By Ida
at 2008-08-24T16:15
IF CLOSE[1] andlt; MA(CLOSE[1],120) THEN END IF 這樣寫會出現 CREAT ERROR 那邊寫錯了呀 感謝 -- http://www.wretch.cc/album/chickout 神月殘夢~~ 神遊古今沐春風 月華初現夜夏空 殘空獨存千秋變 夢斷紅塵雪冬終 ...

請問TS中如何考慮股票的除權息

Mary avatar
By Mary
at 2008-08-19T10:36
找有調整過的資料匯入是最快的辦法 要不然你就只能自己處理了... 台灣玩TS通常都玩期貨,玩股票是比較少見就是了:) ※ 引述《exceleco (刀疤老三)》之銘言: : 請問一下喔,我想用TS找出最適合某檔股票的指標,並以該指標進行績效測試 : 問題來了 : 每年都有除權、除息。 : 有沒有辦法把權 ...

請問TS中如何考慮股票的除權息

Zanna avatar
By Zanna
at 2008-08-18T23:11
請問一下喔,我想用TS找出最適合某檔股票的指標,並以該指標進行績效測試 問題來了 每年都有除權、除息。 有沒有辦法把權息加上去呢....不然直接就會有缺口,然後要手動把權息加回去 還蠻麻煩的。處理過的大大請賜教 - ...

好像沒有HTS之外的系統研討?

Oliver avatar
By Oliver
at 2008-08-14T20:28
HTS雖鳥,卻是目前國內券商提供唯一較完整的程式交易軟體 孫悟空或e-leader似乎是沒有完整的程式化功能(自行編寫程式碼),自訂性較HTS低 HTS弱是弱在資料不足跟一些BUG,但是以程式交易來說在國內券商軟體中應該是沒對手XD 不過要玩程式交易就認命學TS或Wealth-Lab之類的吧... ...