PureBytes Links
Trading Reference Links
|
>Would someone be kind enough to send me the formula for the StoRSI
oscillator?
You didn't specify Easy Language but here it is (I did not declare the
inputs or variables):
If CurrentBar>=length+3 then begin
V1= (RSI(Price,Length)-Lowest(RSI(Price,Length),Length));
V2=0;
For V3= 0 to 2 begin;
V2= V2+ V1[V3];
end;
V3= Highest(RSI(Price,Length),Length)-Lowest(RSI(Price,Length),Length);
V4=0;
For V5= 0 to 2 begin;
V4= V4+ V3[V5];
end;
end;
If V4>0 then begin
SRS=100*(V2/V4);
end;
To unsubscribe from this group, send an email to:
realtraders-unsubscribe@xxxxxxxxxxx
|