[求救]
請問可以把Bollinger Bands - Fibonacci Ratios編成奇狐的程式碼??
我想試試看使用在台灣商品上有什麼變換
(外匯軟體上的指標)
TH:=If(Ref(C,-1) > H,Ref(C,-1),H);
TL:=If(Ref(C,-1) < L,Ref(C,-1),L);
TR:=TH-TL;
TRA:= Wilders(TR,Periods);
MidPoint:= Mov(pr,Periods,mat);
UpperBand3:= MidPoint + (factor3 * TRa);
UpperBand2:= MidPoint + (factor2 * TRa);
UpperBand1:= MidPoint + (factor1 * TRa);
LowerBand1:= MidPoint - (factor1 * TRa);
LowerBand2:= MidPoint - (factor2 * TRa);
LowerBand3:= MidPoint - (factor3 * TRa);
多謝!
|