커뮤니티
문의드립니다
Inputs: Period(240), Smooth(5), Thr(0.95), UseAutoScale(true), ScaleFix(10000);
Vars: U(0), D(0), SU(0), SD(0),
FlowRaw(0), Flow(0), Slope(0), Col(magenta), Scale(0);
If C > C[1] Then begin
U = V; D = 0;
end
Else If C < C[1] Then begin
U = 0; D = V;
end
Else begin
U = V * 0.95;
D = V * 0.95;
end;
SU = SummationRec(U, Period);
SD = SummationRec(D, Period);
If (SU + SD) <> 0 Then
FlowRaw = (SU - SD) / (SU + SD);
Else
FlowRaw = 0;
Flow = TXAverage(Upvol/DownVol,5,20,60);
Slope = Flow - Flow[1];
If Slope > 0 Then Col = Magenta;
buy();
Else If Slope < 0 Then Col = Cyan;
sell();
조건이 갖춰졌을때 처음에만 신호가나올수있게 해주세요
답변 1

예스스탁 예스스탁 답변
2025-10-17 13:13:28.0