這是一個廣為留傳在國外網路上的交易策略,我第一眼看到這個策略的時候,認為這個策略很簡單,簡單到我覺得應該不會適用任何商品。因為這個策略專門是使用日k線的黃金交叉作中長線的交易,我目前沒有寫出任何一個單純靠黃金交叉就能期穩定獲利的程式。
但是直到我看到很有名的WINTON國外基金在作策略簡報,其中有一頁報告顯示他們單純使用簡單的黃金交叉及死亡交叉組成的多市場策略模組,就可以達到很不錯的績效。下面提供的東西僅供練習撰寫程式碼使用。
下面這個策略跟上面的WINTON PROGRAM完全沒有關係,但是算是一個很有名的策略,不妨參考一下:
{______Long Entries/Exits_______}
If Average(Close,6)[0] > Average(Close,6)[1] and
Average(Close,9)[0] > Average(Close,18)[0] and
Average(Close,3)[0] {of data2} > Average(Close,25)[0]
{of data2}
then Buy Tomorrow market;
If Average(Close,9)[0] < Average(Close,18)[0]
then ExitLong Tomorrow market;
{______Short Entries/Exits_______}
If Average(Close,6)[0] < Average(Close,6)[1] and
Average(Close,9)[0] < Average(Close,18)[0] and
Average(Close,3)[0] {of data2} < Average(Close,25)[0]
{of data2}
then Sell Tomorrow market;
If Average(Close,9)[0] > Average(Close,18)[0]
then ExitShort Tomorrow market;
0 留言:
張貼留言
如果有私人問題想請教,請透過網站右方『與站長聯絡』之表單,謝謝!