Download software Tutorial videos
Subscription & data-feed pricing Class schedule


New account application Trading resources
Margin rates Stock & option commissions

Attention: Discussion forums are read-only for extended maintenance until further notice.
Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

Profile: Brucem
About
User Name: Brucem
Groups: Gold User, Member, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Monday, December 27, 2010
Last Visit: Wednesday, February 6, 2019 5:21:57 PM
Number of Posts: 30
[0.01% of all post / 0.01 posts per day]
Avatar
Last 10 Posts
Topic: indicator color change
Posted: Wednesday, January 23, 2019 8:18:12 PM

Is there any code for the moving average indicator to change colors when it changes from up to down

or down to up?

Topic: Heiken Ashi
Posted: Thursday, January 17, 2019 9:18:15 PM

Is there a way to write a condition to convert OHLC values of previous bar into a Heiken Ashi bar?

What I am trying to do is identify the first bar in an uptrend that does not have a lower wick

coming out of a transition phase.It is easily identified on a HA chart but can that be converted to a PDF

condition to be placed in a watch list?

Topic: TTM Squeeze
Posted: Monday, January 14, 2019 9:29:11 PM

Bruce,could you please send the PDF for the TTM Squeeze? Thanks.

Topic: Can ADX & MACD be referenced for a condition code?
Posted: Thursday, August 17, 2017 8:16:33 PM

Is there a way to reference the code for MACD and ADX ? I am looking to write a condition in which ADX would be higher than that of the preious bar AND MACD would be lower than that of the previous bar.

Topic: volatility stop
Posted: Tuesday, June 20, 2017 3:27:28 PM

Is there a way to express as a condition where price is above the volatility stop and the low for that bar was below the volatility stop?

Topic: Relative strength code
Posted: Sunday, March 13, 2016 8:27:51 PM

There is a column "Relative Strength 1-yr (vs Sp 500)". Is there code available that would provide relative strength comparisons for two symbols for variable time windows? Such as any stock with its industry index symbol for any variable time period.

Topic: H > upper BB
Posted: Tuesday, July 22, 2014 1:50:02 PM

I am trying to create a PCF condition for a High greater than the upper Bollinger Band, a period of 6 days with an exponential avg of 6 and 1.75 STD. I have the following but it does not work. Can you correct the code?

H > XAVGC6 + 1.75 * SQR(ABS(C ^ 2 + C1 ^ 2 + C2 ^ 2 + C3 ^ 2 + C4 ^ 2 + C5 ^ 2 + C6 ^ 2  - 6 * XAVGC6 ^ 2) / 6)

Bruce

Topic: 20 period high indicator
Posted: Monday, January 13, 2014 10:54:23 AM

Can an Indicator be created, that will plot day to day on a price chart,  the higest high and lowest low of the last 20 days? When I use ( C > MAXH20.1) as a condition it returns accurately as expected but  using MAXH20.1 as a formula for an indicator the returned plot is not at all correct.

Topic: Bollinger Band Width PCF
Posted: Friday, December 21, 2012 11:01:48 AM

Bruce,

Thanks much. That works as I was expecting. Could you tell me what the "2" represents in

C ^ 2 + C1 ^ 2 etc. ?

Regards and Merry Christmas.

Bruce

Topic: Bollinger Band Width PCF
Posted: Thursday, December 20, 2012 7:47:52 PM

I am  trying to write a PCF condition to duplicate the indicator "Bollinger Band Width". The conditions I am using are  1)  XAVGC6 and 2)  SD of 1.75. The indicator results seem  to be arrived at by dividing the upper BB by the Lower BB giving a result of .o? which seems to be a percent.. The percent  or number that I am looking for would be a number <= .03 which is the number returned by the Bollinger Band Width indicator.  The following is what I have tried but the scan results are not correct. Can you Help?

XAVGC6 + 1.75 * SQR(ABS(C ^ 1.75 +C1 ^ 1.75 + C2 ^ 1.75
+ C3 ^ 1.75 + C4 ^ 1.75 + C5 ^ 1.75   - 6 * XAVGC6 ^ 1.75) / 6)    /
XAVGC6 - 1.75 * SQR(ABS(C ^ 1.75 +C1 ^ 1.75 + C2 ^1.75
+ C3 ^ 1.75 + C4 ^ 1.75 + C5 ^ 1.75  - 6 * XAVGC6 ^ 1.75) / 6)  <= 1.03

Thanks,

Bruce M