PureBytes Links
Trading Reference Links
|
Try plotting this as left or right tick. It will do the flip flop you
asked for.
-----------------------------------
Var: Pos(1), TSUP(0), TSDN(0), TimeFrame(0);
TSUP=Average(H,3)[1];
TSDN=Average(L,3)[1];
If Pos=1 and C<=TSDN then begin
Plot1(TSUP,"TSUP");
Plot2(TSDN,"TSDN");
Pos=-1;
End;
If Pos=-1 and C>=TSUP then begin
Plot1(TSUP,"TSUP");
Plot2(TSDN,"TSDN");
Pos=1;
End;
If Pos=-1 and C<TSUP then Plot1(TSUP,"TSUP");
If Pos=1 and C>TSDN then Plot2(TSDN,"TSDN");
-----------------------------
TCFRMR@xxxxxxx wrote:
>
> Dave Ellery asked, "Can Susan Russell or any other list participant help me
> with adjusting
> the HiLo Activator so it flip/flops from buy to sell rather than looking
> like a channel. The original Krause HiLo indicator looks very much a stairstep
> which moves from one side to the other as the trend changes.".
>
> I've not figured that out yet either. I posted it hoping that someone might
> pick it up and inject with the needed improvements.
>
> Susan
|