PureBytes Links
Trading Reference Links
|
Would some one please explain what this indicator does? Thanks
Inputs:FastLen(7),{Length in bars for LRS}
SlowLen(30);
Vars:FastLRS(0), {LinearRegSlope Fast}
SlowLRS(0); {LinearRegSlope Slow}
FastLRS = LinearRegSlope( C, FastLen)*1000;
SlowLRS = LinearRegSlope(C, SlowLen)*1000;
Plot1( FastLRS , "LRS Fast" );
Plot2( SlowLRS , "LRS Slow" );
|