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: ADX trader
About
User Name: ADX trader
Groups: Member
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Gender:
Statistics
Joined: Thursday, September 10, 2009
Last Visit: Thursday, February 14, 2019 6:36:34 PM
Number of Posts: 11
[0.00% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: WatchList format
Posted: Thursday, November 30, 2017 3:35:55 PM

I have one WatchList I use for an overview of items in various sectors.  It  keep it 'manually' sorted.  Is it possible to insert blank rows or adjust the height of an individual row to make it easier to monitor?

Topic: Sharing Personal Watchlist
Posted: Sunday, November 19, 2017 12:46:49 PM

I am looking for a means of sharing a number of personal watchlists, but cannot find any means of doing it in version 17.

Topic: Divergence in Klinger Volume Oscillator
Posted: Friday, September 29, 2017 10:52:37 AM

Works beautifully.  I never thought about using the Donchian Channel.

Thanks.

Topic: Divergence in Klinger Volume Oscillator
Posted: Thursday, September 28, 2017 8:52:54 PM

Is it possible to look for a divergence using the Klinger Volume Oscillator?

This comes back with 'unkown method KVO'.

C<MIN(C1,10) and KVO.34.55>MIN(KVO1.34.55,10)

Topic: Second condition within 30 bars of first condition being met
Posted: Monday, September 18, 2017 4:23:05 PM

Thanks.  It appears to be more of a sludge hammer approach than I anticipated, but it works.

Topic: Second condition within 30 bars of first condition being met
Posted: Monday, September 18, 2017 3:21:42 PM

If a first condition is met then I am looking for the second condition to occur within 30 bars.

First condition:

CountTrue(c<c4,9)=9 

Second condition:  

CountTrue(c<l2,x)=13, where x only looks back to when the original condition was met (+4).

I am assuming that I need a counter.

 

 

Topic: TC2000 Support Articles
Posted: Sunday, September 17, 2017 6:08:09 PM

How do I start  count after a condition has been met?

counttrue(c<c4,9)=9 and c9>c13

Once the previous condition is true I am looking for the next 30 bars to have a total of 13 bars with c>h2.

I would asume that it would be similar to the following, but with x being a variable based upon the number of bars since the original condition to a maximum of 30.

counttrue(c>h2,x)=13 

 

Topic: Catching up with Demark
Posted: Sunday, April 18, 2010 2:29:44 PM
I am migrating from TradeStation 2000i and have used Sequential Setups and Signals for years.  Here is my attempt at the code for a TD Seq Sell Setup.  How do I change it to paint the price chart?

'|******************************************************************
'|*** StockFinder RealCode Indicator - Version 5.0 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Indicator:TD Seq Sell Setup
'|***************************************************************
Dim counter As Integer
Dim Barsback As Integer
counter = 0
If price.Close(9) < price.Close(13)
    For Barsback = 0 To 8
        If price.Close(barsback) > price.Close(barsback + 4) Then counter = counter + 1
Next
If counter = 9 Then plot = price.Close
End If
Topic: Modified CCI
Posted: Tuesday, April 13, 2010 1:15:22 PM
Perfect.  Thanks.
Topic: Modified CCI
Posted: Tuesday, April 13, 2010 12:00:52 PM
Thanks.  However, can I create this indicator (we'll call it CCIMod) and place it on the chart without having to place the CCI, its MA and the ADX on the chart? 

Rather than take the variable lengths of 3 and 14 from the chart for the CCI and ADX I would prefer to hard code them into the formula.

I want to be capable of using rules related to CCIMod as it relates to other indicators.