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: joemcc572004
About
User Name: joemcc572004
Groups: Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Thursday, July 2, 2009
Last Visit: Friday, October 9, 2015 8:07:04 AM
Number of Posts: 27
[0.01% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: new easy scan help
Posted: Saturday, October 3, 2015 10:38:52 PM


Could there be a way to do it with the zig zag indicator?

Topic: new easy scan help
Posted: Thursday, October 1, 2015 6:58:35 PM

Hello,

I am a swing trader, and I was hoping to get some help creating a easy scan to scan the daily chart for stocks that have made higher swing highs, and a higher swing lows to identify an uptrend, and now after making a new swing high, it retraced down lower than its' previous swing low, and then went back up to break the high of the previous swing high.

Is there any way I can create a scan for this?

Thanks

Topic: Question
Posted: Wednesday, September 29, 2010 1:17:46 PM
Can you please show me how to put daily pivot points on my chart? I am a day trader and would love to see these levels.

Thanks.
Topic: Help please
Posted: Thursday, September 16, 2010 10:47:05 AM
Thanks, but I used that formula, and it works sometimes, and other times it won't scan my watchlist at all. I don't know why but when I link it to my watchlist and try scanning, nothing happens. It seems like its picky, can you tell me why that is?
Topic: Help please
Posted: Wednesday, September 15, 2010 10:01:05 AM
When I scan my watchlist for stocks that are between $30 and $70 in an uptrend with this formula, It works. Here is the formula.....

'|*****************************************************************|
'|*** StockFinder RealCode Condition - Version 5.0 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Condition:joemcc572004 48908
'|******************************************************************
If 30 <= Price.Last AndAlso _
    Price.Last <= 70 AndAlso _
    Price.AVGC(8) > Price.AVGC(10) AndAlso _
    Price.AVGC(10) > Price.AVGC(20) AndAlso _
    Price.AVGC(20) > Price.AVGC(24) AndAlso _
    Price.AVGC(24) > Price.AVGC(50) AndAlso _
    Price.AVGC(50) > Price.AVGC(100) AndAlso _
    Price.AVGC(100) > Price.AVGC(200) Then Pass

But when I try to scan for stocks in my watchlist between $30 - $70 in a downtrend using this formula, It doesn't seem to do anything. The system won't scan for it. Is there something wrong with the formula?

'|*****************************************************************|
'|*** StockFinder RealCode Condition - Version 5.0 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Condition:joemcc572004 48908
'|******************************************************************
If 30 <= Price.Last AndAlso _
    Price.Last <= 70 AndAlso _
    Price.AVGC(8) < Price.AVGC(10) AndAlso _
    Price.AVGC(10) < Price.AVGC(20) AndAlso _
    Price.AVGC(20) < Price.AVGC(24) AndAlso _
    Price.AVGC(24) < Price.AVGC(50) AndAlso _
    Price.AVGC(50) < Price.AVGC(100) AndAlso _
    Price.AVGC(100) < Price.AVGC(200) Then Pass
Topic: Help please
Posted: Tuesday, September 14, 2010 10:52:05 AM
Thanks but I would like to simultaneously search for stocks in an uptrend (using the above formula) but also would like to search for stocks in a downtrend. I realize that all i would have to do is change the < to > .

So how would I be able to scan my watchlist for both conditions at the same time?

Thanks
Topic: Help
Posted: Monday, September 13, 2010 12:29:04 PM
I scanned my watchlist column a few times for a condition , now every ticker has 3 bars under it. How do I take these bars off?

Thanks.
Topic: Help please
Posted: Monday, September 13, 2010 12:13:06 PM
Sorry I'm a little confused....

I have my watchlist up, and I clicked on "New Real Code Condition" and copied and pasted this formula....

'|*****************************************************************|
'|*** StockFinder RealCode Condition - Version 5.0 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Condition:joemcc572004 48908 Up Trend
'|******************************************************************
If CurrentIndex >= 199 Then
    If 30 <= Price.Last AndAlso _
        Price.Last <= 70 AndAlso _
        Price.AVGC(8) < Price.AVGC(10) AndAlso _
        Price.AVGC(10) < Price.AVGC(20) AndAlso _
        Price.AVGC(20) < Price.AVGC(24) AndAlso _
        Price.AVGC(24) < Price.AVGC(50) AndAlso _
        Price.AVGC(50) < Price.AVGC(100) AndAlso _
        Price.AVGC(100) < Price.AVGC(200) Then
        Pass
    End If
    Else
        SetIndexInvalid
End If

Then I pressed Ok.

But I didn't see in my watchlist any colored bars under the ticker to show me that the formula was true.

Can you please tell me what I did wrong?

Thanks.
Topic: Help please
Posted: Thursday, September 9, 2010 11:59:59 AM
Ok thanks, I forgot though that I only want to deal with stocks that are between $30 and $70 dollars. How would I add that into the equation?

Thanks
Topic: Help please
Posted: Thursday, September 9, 2010 10:58:06 AM
I was wondering if you could show me how to accomplish this objective...

I want to be able to scan through a list of stocks in real-time on the 5 minute chart for symbols that have the 8SMA above the 10SMA, the 10SMA above the 20SMA, the 20SMA above the 24SMA, the 24SMA above the 50SMA, the 50SMA above the 100SMA, and the 100SMA above the 200SMA.

Thanks.