不賣錢.......客官自行打賞..
只用均線.....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.....
重點還是在獲利方程式要先建立....
不然都是紙上富貴(我在說我自己.....)
|