請問 海龜通道策略~~如何改用平均值來計價
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支高點的平均值
突破在進場
謝謝
value1=xaverage(Low,20);
頁:
[1]