joemcc572004 |
Gold User, Member, Platinum User, TeleChart
|
Registered User |
|
|
|
|
Unsure |
|
Thursday, July 2, 2009 |
Friday, October 9, 2015 8:07:04 AM |
27 [0.01% of all post / 0.00 posts per day] |
|
Could there be a way to do it with the zig zag indicator?
|
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
|
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.
|
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?
|
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
|
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
|
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.
|
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.
|
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
|
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.
|
|