Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

Profile: Chris55
About
User Name: Chris55
Groups: Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Gender:
Statistics
Joined: Tuesday, June 14, 2016
Last Visit: Wednesday, April 8, 2020 4:46:51 PM
Number of Posts: 285
[0.10% of all post / 0.10 posts per day]
Avatar
Last 10 Posts
Topic: Ichimuko test in progress
Posted: Wednesday, April 3, 2019 12:12:20 PM

Thanks, Bruce. I appreciate your help as always. Chris 

Topic: Ichimuko test in progress
Posted: Wednesday, April 3, 2019 10:48:06 AM

Using the EMA20, would I just write it like this?

C >= XAVGC20

(I ususally plot my Bollinger Bands using an EMA....)

Topic: Ichimuko test in progress
Posted: Wednesday, April 3, 2019 10:46:19 AM

Oh, of course - you're absolutely right. It was an easy one. Thanks much!

Topic: Ichimuko test in progress
Posted: Wednesday, April 3, 2019 10:19:31 AM

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 

Topic: Ichimuko test in progress
Posted: Tuesday, March 19, 2019 1:40:10 PM

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 
Topic: Ichimuko test in progress
Posted: Tuesday, March 19, 2019 12:45:19 PM

Hi Bruce,

For a scan, I&#39;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 

Topic: Ichimuko test in progress
Posted: Friday, March 1, 2019 10:44:34 AM

Thanks so much for your detailed help, Bruce. I&#39;ll study this at length. Chris 

Topic: Ichimuko test in progress
Posted: Wednesday, February 27, 2019 9:56:03 AM

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 

 

 

Topic: Ichimuko test in progress
Posted: Monday, February 25, 2019 12:49:32 PM

Thanks very much Bruce. I tried it out on several samples, and it seems to work.. Kind regards, Chris 

Topic: Ichimuko test in progress
Posted: Monday, February 25, 2019 12:25:51 PM

I didn&#39;t notive this ealier, but maybe if I change the " >0" at the end to " =0", that might do it.