Thanks, Bruce. I appreciate your help as always. Chris
|
Using the EMA20, would I just write it like this?
C >= XAVGC20
(I ususally plot my Bollinger Bands using an EMA....)
|
Oh, of course - you're absolutely right. It was an easy one. Thanks much!
|
Hi Bruce,
How would I write a scan criteria that would include (both):
C > BBTOP(0.25, 20)
OR
C is in the upper half of this Bollinger Band?
Many thanks for your help.
Chris
|
Thanks very much for your quick reply. Presumably, I could split this up into 3 segments, so as to be able to use combinations:
CountTrue(L < L1, 5) >= 3
(ABS(H + L - 2 * XAVGC10) <= H - L OR ABS(H + L - 2 * XAVGC20) <= H - L)
V < AVGV10.1
Best regards,
Chris
|
Hi Bruce,
For a scan, I'm looking to add some conditions which specify:
- 3 or more of the last 5 bars have lower highs (than the bar before respectively);
- The 10-bar EMA or the 20-bar EMA is crossing the current bar range (H-L) anywhere;
and also a volume related one:
- the current bar volume is less than the average volume of the last 10 bars.
Thanks for helping me out.
Chris
|
Thanks so much for your detailed help, Bruce. I'll study this at length. Chris
|
Hi Bruce,
I have used this condition PCF for quite some time which filters one T3 Moving Average (T3-4-1.618) crossing down on another T3 (T3-6-1.272):
XDOWN(-4.235801 * XAVG(XAVG(XAVG(XAVG(XAVG(XAVGC4, 4), 4), 4), 4), 4) + 20.561175096* XAVG(XAVG(XAVG(XAVG(XAVGC4, 4), 4), 4), 4) - 33.268947 * XAVG(XAVG(XAVG(XAVGC4, 4), 4), 4) + 17.943573032* XAVG(XAVG(XAVGC4, 4), 4), -2.0580756 * AVG(XAVG(XAVG(XAVG(XAVG(XAVGC6, 6), 6), 6), 6), 6) + 11.028179 * XAVG(XAVG(XAVG(XAVG(XAVGC6, 6), 6), 6), 6) - 19.698131 * XAVG(XAVG(XAVG(XAVGC6, 6), 6), 6) + 11.728028 * XAVG(XAVG(XAVGC6, 6), 6))
What I would really like to do, is to have TC2000 draw a down arrow when this instance occurs.If that would not be possible, I could also use a histogram indicator panel which would only show the (sell) signals in this case.
Thanks much for your help. Kind regards,
Chris
|
Thanks very much Bruce. I tried it out on several samples, and it seems to work.. Kind regards, Chris
|
I didn't notive this ealier, but maybe if I change the " >0" at the end to " =0", that might do it.
|