|
好的 李大哥 您好!! 那麼 我就用比較清楚的方式表達一下 ..
例如 阿政大的 突破策略 為A策略 如下:
input: Length(10),endTime(1330);
var: K(1),toBuy(99999),toShort(0);
K= iff( D>D[1], 1, K+1 );
if sessionlastbar then begin
tobuy=99999;
toshort= 0;
end;
if K=Length then begin
toBuy=Highest(High,K);
toShort=Lowest(Low,K);
end;
if K>=Length and T<=endTime then begin
if marketposition<=0 then
buy next bar toBuy stop;
if marketposition>=0 then
sellshort next bar toShort stop;
end;
setexitonclose;
那麼 我還有B策略 如下
If rsi(close,14) cross under 70 then sellshort next bar at market;
If rsi(close,14) cross over 30 then buy next bar at market;
end;
setstoploss(60*bigpointvalue);
setprofittarget(30*bigpointvalue);
那麼請教如何定義 A策略突破100點之後
B策略 讓他停止動作呢?
|
|