Registered User Joined: 6/15/2005 Posts: 67
|
Currently I'm using telechart to produce my easyscan numbers and then plotting them in excel. I was wondering if there is a way to plot the data in Stockfinder. The first equation finds the number of stocks up 4% or more for the day with volume over 100,000 and greater volume then the previous day.
Thanks
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You could use the following RealCode Condition:
Writing Condition in RealCode
If Price.Last >= 1.04 * Price.Last(1) AndAlso _
Volume.Value >= Volume.Value(1) AndAlso _
Volume.Value >= 1000 Then Pass
As the basis of a Custom Market Indicator.
Market Indicators from Conditions
Custom Market Indicators
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 6/15/2005 Posts: 67
|
I loaded the realcode and created the market indicator from the condition. What I'm wondering is if there is a way to make the indicator not have to recalculate from the beginning each time I open StockFinder?
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
No, there really isn't a built in way to do this.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|