Registered User Joined: 4/14/2007 Posts: 37
|
Hello,
i would like to run a realtime easyscan for detecting stocks, which have a 1-min change greater than 6%. I figured this out with platinum. It works. But, i would like to see the results for the past (last 10 min for example)
Will these appear in "Reports"
Thanks
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
If you are using the closing prices from bar to bar, you can write this for one bar as follows.
100 * ABS(C / C1 - 1) > 6
If you want to check this happening within the most recent 10 bars, you could use the CountTrue() function.
CountTrue(100 * ABS(C / C1 - 1) > 6, 10) > 0
This could appear in a report, but you would need to manually add it to the report using the Add Condition feature.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 4/14/2007 Posts: 37
|
Thank you Bruce
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|