ws05kimo 發表於 20-4-16 11:37

請問 海龜通道策略~~如何改用平均值來計價

inputs:LengthLong(20),Lengthshort(20),stoploss(0.01);
variables:hh(0),ll(0);




hh=highest(high,LengthLong);
ll=lowest(low,Lengthshort);




Buy("Buy") 1 contracts next bar at hh stop;




Sell("Sell") 1 contracts next bar at ll stop;


~~~~~~~~~~~~~~~~~~~
請問如何改寫成用平均值來計價


比如20支低點的平均值
比如20支高點的平均值
突破在進場
謝謝




大衛林 發表於 20-5-6 14:29

value1=xaverage(Low,20);
頁: [1]
查看完整版本: 請問 海龜通道策略~~如何改用平均值來計價