PureBytes Links
Trading Reference Links
|
On 31 Mar 98 at 9:57, TWA7663 wrote:
> Has anyone written the Easy Language code for the Gann Swings and/or
> the Hi-Lo Activator discussed by Robert Krausz?
Here's my version of the Activators. Use Right Tic for style. The
Gann swings I do manually, allowing me to be a bit more subjective,
when necessary, than Robert Krausz.
Enjoy!
********************************
Var: Swing(0);
Value1=Average(H,3);
Value2=Average(L,3);
If C<Value2[1] And C[1]>=Value2[2] then Swing=-1;
If C>Value1[1] And C[1]<=Value1[2] then Swing=1;
If Swing=1 Then Plot1(Value2,"Sell Act");
If Swing=-1 Then Plot2(Value1,"Buy Act");
******************************
Glenn
gpeder@xxxxxxxxx
|