Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 9/2/2006 Posts: 12
|
I use the Market Rank of this PCF
((((C - C63) / C63) * .4) + (((C - C126) / C126) * .2) + (((C - C189) / C189) * .2) + (((C - C252) / C252) * .2)) * 100
in TeleChart, and am very happy with the results.
I have the real code as
Plot = ((((Price.Close - Price.Close(63)) / Price.Close(63)) * .4) + (((Price.Close - Price.Close(126)) / Price.Close(126)) * .2) + (((Price.Close - Price.Close(189)) / Price.Close(189)) * .2) + (((Price.Close - Price.Close(252)) / Price.Close(252)) * .2)) * 100
How or can I plot it as a Market Rank or use it as a condition?
I use Symbol Rank vs US Stocks Smoothed by 250 and am not happy with the results.
Thanks
|
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
QUOTE (biseniusr) I use the Market Rank of this PCF
((((C - C63) / C63) * .4) + (((C - C126) / C126) * .2) + (((C - C189) / C189) * .2) + (((C - C252) / C252) * .2)) * 100
in TeleChart, and am very happy with the results.
How are you using it in TeleChart, exactly? In a scan, as a sort?
|
|
Registered User Joined: 9/2/2006 Posts: 12
|
QUOTE (StockGuy) QUOTE (biseniusr) I use the Market Rank of this PCF
((((C - C63) / C63) * .4) + (((C - C126) / C126) * .2) + (((C - C189) / C189) * .2) + (((C - C252) / C252) * .2)) * 100
in TeleChart, and am very happy with the results.
How are you using it in TeleChart, exactly? In a scan, as a sort?
I use it as a scan and a watch list column, I would like to use it as an indicator but can only get the raw data to plot and not the Market Rank. In Stock Finder I would like to do a lot more with it, but need the ability to use Market Rank, is there code for market rank.
Thanks
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
biseniusr,
It is possible to create an Indicator that Plots the Rank instead of the Value. That said, I do not know of a way to do so using RealCode and the results can be incredibly slow.
You should be able to Open an attached Indicator directly into a running copy of StockFinder (and save it from within StockFinder if desired). You could also copy and paste the Indicator into the \My Documents\StockFinder\(Your Username)\My Indicators\ folder and then load it like you would any other Indicator (for StockFinder 5, use the \My Documents\StockFinder5\(Your Username)\My Indicators\ folder instead).
Block Diagrams have been de-emphasized in StockFinder but the Your First 3 Block Diagrams video covers creating Block Diagrams. Most people don't do much with Block Diagrams and use Drag and Drop or RealCode exclusively.Attachments: Ranked_Weighted_Quarters.sfInd - 7 KB, downloaded 795 time(s).
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 9/2/2006 Posts: 12
|
Thanks that is close to what I was looking for. Is there a way to convert a block diagram to Real Code?
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
I do not know of a way to calculate Ranks using RealCode (which doesn't necessarily mean it isn't possible as I am not a programmer).
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |