|
inputs:LengthLong(20),Lengthshort(20),stoploss(0.01);
variables:hh(0),ll(0);
hh=highest(high,LengthLong)[1];
ll=lowest(low,Lengthshort)[1];
Buy("Buy") 1 contracts next bar at hh stop;
Sell("Sell") 1 contracts next bar at ll stop;
~~~~~~~~~~~~~~~~~~~
請問如何改寫成用平均值來計價
比如20支低點的平均值
比如20支高點的平均值
突破在進場
謝謝
|
|