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: arcadianskies
About
User Name: arcadianskies
Groups: Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Saturday, April 29, 2006
Last Visit: Friday, June 8, 2018 9:45:24 AM
Number of Posts: 16
[0.01% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: TTM Squeeze
Posted: Friday, June 8, 2018 9:45:23 AM

Hello Bruce,

Please send me a copy of your latest version of the TTM Squeeze/Wave indicators via TCMail.

Thank you,

Paul 

Topic: TTM Squeeze and Wave
Posted: Wednesday, November 22, 2017 10:09:59 PM

Bruce,

Please send a copy of the latest TTM Squeeze indicator.  Thank you Bruce

Respectfully yours,

Paul 

Topic: ConnorsRSI
Posted: Friday, September 13, 2013 10:36:33 PM

I'm another Worden customer that would like for them to add ConnorsRSI to TC2000 as soon as possible.

Thanks.

Topic: Can't get ABS to work in formula
Posted: Monday, April 25, 2011 9:57:39 PM
Works exactly as I wanted.  Thank you Bruce.

Jas0501, Thanks for your suggestions.
Topic: Can't get ABS to work in formula
Posted: Monday, April 25, 2011 9:54:24 PM
Topic: Can't get ABS to work in formula
Posted: Sunday, April 24, 2011 10:05:29 PM
I'm trying to get the average absolute range of the open to the close (in percent)  for a set of specific dates.  Please help me in correcting this formula.  Thanks.


Static Sum As Single
If isFirstBar Then
 Sum = 0
End If
If  Price.DateValue.Year = 2010 AndAlso _
 ((Price.DateValue.Month = 12 AndAlso _
 Price.DateValue.Day = 2) OrElse _
 (Price.DateValue.Month = 12 AndAlso _
 Price.DateValue.Day = 7))Then
 Sum += Math.Abs(Price.Last / Price.Open)
End If
If isLastBar Then
 Plot = 100 * (Sum / 2 - 1)
Else
 Plot = Single.NaN
End If