Skip to content

Tutorial 157 | Screening symbols without RadarScreen or Scanner

tutorial157

A Gold Pass member asked for a tutorial about how to screen a large number of symbols from a trading app.

Summary: Tutorial 157 demonstrates how to do an analysis for a large number of symbols from a form. The program uses StreamReader to import a list of symbols form a text file into a TokenList. It then creates and stores price series providers in a dictionary. Finally a method screens the symbols for low pivots. If found the symbols are added to a data grid.

Tutorial 157 demonstrates how to create a program that does an analysis for a large number of symbols when a button is clicked. The program’s interface uses a form which contains a button and a data grid.

When the button is clicked the program imports a symbol list from the hard drive using a StreamReader object. See QuickTip37 for another example of this. A price series provider (PSP) is created for each symbol. A simple pivot algorithm is run for each PSP and if a low pivot is discovered the symbol name is added to a list in a data grid.

This technique could be useful if you were analyzing a large number of symbols but you only needed the analysis done at a specific time (e.g. a bar or two before market close.) Similar results could be obtained using RadarScreen or Scanner except that, ordinarily, RadarScreen would continue processing every bar even though the results would only be required at a certain time. This technique could also be run mid bar without waiting for the end of the bar.

A major advantage of the Radarscreen or Scanner approach is that both these applications can use regular indicators or show me studies. With the tutorial 157 approach, the functionality of an indicator or show-me study would need to be rewritten to work with a price series provider.

This can present programming challenges when you wish to use a cumulative value, for instance as with the exponential moving average calculation.

This tutorial only applies to TradeStation. It was written in version 9.5 and has been tested in version 9.5 and 10.

Programming notes

The tutorial program contains examples of the use of:

  • Forms (including a button and data grid)
  • StreamReader
  • TokenList
  • Dictionary
  • Price series providers
  • Price series provider loaded update event

Designing the form

In this tutorial the form was created using the TradeStation development environment. After the Trading App has been created, right clicking the program space gives an option to ‘Add form.’ The button and the data grid were added to the form by selecting double clicking ‘Toolbox’ and then double clicking Button and DataGridView.

Once created the Button and DataGridView objects can be modified by selecting them and then clicking the Properties button (on the right hand side of the screen), as in the following images.

The completed form
When the DataGrid is selected and ‘Properties’ clicked the following window appears. It is important to have the correct number of columns for this program to work. To do this click the ellipsis to the right of ‘Columns.’ The following window will then appear.
Add and remove columns click clicking the ‘Add’ and ‘Remove’ buttons on the bottom left of the window.

 

Tutorial 157 video

This unprotected and commented program (i.e. the TradeStation EasyLanguage Trading App):

  • _Tutorial157

is available for immediate download for $24.95 by clicking the following ‘add to cart’ button where you may pay with a credit card or by using PayPal.

The program is compatible with versions TradeStation 9.5 and above, including 10. It is not compatible with MultiCharts.

Gold Pass area

If you are a Gold Pass member you can download the tutorial ELD file below, please make sure that you are logged in with your Gold Pass user name and password.
This content is for members only.

THE TRADING APPS, INDICATORS, SHOW ME STUDIES, STRATEGIES AND OTHER PROGRAMS HAVE BEEN INCLUDED SOLELY FOR EDUCATIONAL PURPOSES.

TO THE BEST OF MARKPLEX CORPORATION’S KNOWLEDGE, ALL OF THE INFORMATION ON THIS PAGE IS CORRECT, AND IT IS PROVIDED IN THE HOPE THAT IT WILL BE USEFUL. HOWEVER, MARKPLEX CORPORATION ASSUMES NO LIABILITY FOR ANY DAMAGES, DIRECT OR OTHERWISE, RESULTING FROM THE USE OF THIS INFORMATION AND/OR PROGRAM(S) DESCRIBED, AND NO WARRANTY IS MADE REGARDING ITS ACCURACY OR COMPLETENESS. USE OF THIS INFORMATION AND/OR PROGRAMS DESCRIBED IS AT YOUR OWN RISK.

ANY EASYLANGUAGE OR POWERLANGUAGE TRADING STRATEGIES, TRADING APPS, SIGNALS, STUDIES, INDICATORS, SHOWME STUDIES, PAINTBAR STUDIES, PROBABILITYMAP STUDIES, ACTIVITYBAR STUDIES, FUNCTIONS (AND PARTS THEREOF) AND ASSOCIATED TECHNIQUES REFERRED TO, INCLUDED IN OR ATTACHED TO THIS TUTORIAL OR PROGRAM DESCRIPTION ARE EXAMPLES ONLY, AND HAVE BEEN INCLUDED SOLELY FOR EDUCATIONAL PURPOSES. MARKPLEX CORPORATION. DOES NOT RECOMMEND THAT YOU USE ANY SUCH TRADING STRATEGIES, SIGNALS, STUDIES, INDICATORS, SHOWME STUDIES, PAINTBAR STUDIES, PROBABILITYMAP STUDIES, ACTIVITYBAR STUDIES, FUNCTIONS (OR ANY PARTS THEREOF) OR TECHNIQUES. THE USE OF ANY SUCH TRADING STRATEGIES, SIGNALS, STUDIES, INDICATORS, SHOWME STUDIES, PAINTBAR STUDIES, PROBABILITYMAP STUDIES, ACTIVITYBAR STUDIES, FUNCTIONS AND TECHNIQUES DOES NOT GUARANTEE THAT YOU WILL MAKE PROFITS, INCREASE PROFITS, OR MINIMIZE LOSSES.