PureBytes Links
Trading Reference Links
|
> H[1]>H and H[2]<H[1] and L[1]>L and L[2]<L[1]
>
>I've tried to write this as and IF THEN formula but I keep getting the
>error message "cannot implicitly
>convert Numerical to TrueFalse". I don't know enough about Easy Language
>to get this right so I'd like to ask for some help. This paint bar worked
>really well and the bar after the pivot high starts to change color the
>minute it clears the pivot high bar's low giving a quick low risk entry
>point(all other things and your karma being equal).
Deming: Here you go:
IF H[1]>H and H[2]<H[1] and L[1]>L and L[2]<L[1] Then Begin
Plot1(High,"PBHigh");
Plot2(Low,"PBLow");
IF CheckAlert Then Alert = TRUE;
End;
* * * * * * * * * * * * * Doug Deming * * * * * * * * * * * * * * * *
Investment Engineering, Corp. http://www.InvestLabs.com
Innovative ideas, solutions, and consulting for
Omega Research TradeStation and SuperCharts.
Ph.(808)875-4558, Email: Info@xxxxxxxxxxxxxx
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
|