期貨藝術家 發表於 13-4-9 17:19

MC均線1800秒4行程式碼

不賣錢.......客官自行打賞..

只用均線.....1800秒.....沒停損停利.....

真正只有4行.....但為了讓大家可以拿回去用....我多寫了另一個變數版...結果一樣

尚未最佳化....有興趣的人自己玩..

高手就別電我了.....呵呵

版本一(4行無變數版):

condition1 = c>Average(c,300) and v>5000;
condition2 = c<Average(c,300) and v>5000;
If condition1 then buy("Long") next bar at market;
If condition2 then Sellshort("Short") next bar at market;


版本二(變數版):

Input :
       RR(5000),
       N(300),
       SL(999999),
       SP(999999);
condition1 = c>Average(c,N) and v>RR;
condition2 = c<Average(c,N) and v>RR;
If condition1 then buy("Long") next bar at market;      
If condition2 then Sellshort("Short") next bar at market;
setstoploss(200*SL);
setprofittarget(200*SP);

成本500單趟...滑價0...(看看就好....請不要真的試單....小弟不負責的哦)








主要是跟大家講....其實MC本身很簡單....但....不代表一定OK.....

重點還是在獲利方程式要先建立....

不然都是紙上富貴(我在說我自己.....)

bobo177 發表於 13-4-9 18:47

每人可打賞 2 COCO 耶...

{:4_199:}

a25575703 發表於 13-4-9 20:39

感謝版大的分享。{:4_209:}

馬庫努 發表於 13-4-9 23:39

厲害~~~厲害~~~{:7_446:}

期謀 發表於 13-4-10 10:07

其實兩行就完成了

期貨藝術家 發表於 13-4-10 10:30

期謀 發表於 13-4-10 10:07 static/image/common/back.gif
其實兩行就完成了

期謀大是指這樣嗎:

If c>Average(c,300) and v>5000 then buy("Long") next bar at market;
If c<Average(c,300) and v>5000 then Sellshort("Short") next bar at market;

kenbronze 發表於 13-4-10 11:22

蠻簡單的概念
其實程式交易都有一種
師父領進門 修行在個人的感覺
共勉之~

期謀 發表於 13-4-10 11:59

期貨藝術家 發表於 13-4-10 10:30 static/image/common/back.gif
期謀大是指這樣嗎:

If c>Average(c,300) and v>5000 then buy("Long") next bar at market;


對啊這樣兩行就搞定 {:4_163:}
頁: [1]
查看完整版本: MC均線1800秒4行程式碼