Skip to content

Program 25 (with plots) ADVANCED

Program 2 (with plots) with show me plots rather than text.

Program 25 (with plots) is a new version of program 25 with the following features:

  • A user input determines whether the candlestick patterns are indicated by text (as in the original program 25) or show-me dots
  • The upper and lower limits for the stochastic filter are now user inputs
  • A new %R filter has been added together with user input upper and lower limits
  • The stochastic and %R filters may be used independently or together

For a full description of all the candlestick patterns this program looks for, as well as information about using it with RadarScreen see the original program 25 information.

The following video explains and demonstrates the new program:

In addition, the download for program 25 (with plots) includes two bonus videos:

  • Video one explains how I modified the hard coded upper and lower stochastic limits into user inputs
  • Video two shows how I added the new %R filter to the program

Hopefully you will be able to apply these techniques to other programs.

This UNPROTECTED program (i.e. the TradeStation EasyLanguage show me study) is available for immediate download for $79.95 by clicking the ‘add to cart’ button to pay using credit card or PayPal. The download includes the unprotected functions used by the program: _CheckLastSeveral and _PatternCommentary together with plain text version of program 25 (with plots) and the two functions. The program requires TradeStation 9.0 or above. It won’t work with Multicharts.

Program 25 (with plots) applied to daily GBPUSD chart. User input PlotOrNot is set to TRUE.
Program 25 (with plots) applied to daily GBPUSD chart. User input Plotornot is set to FALSE. The candlestick patterns are indicated by appropriate text. Click on the image to enlarge it.

User inputs

The new inputs are emboldened.

Int LastBar( 0), // If ShowMe study is applied to RadarScreen LastBar is the number of bars to ‘look back’
Int Length( 14), // Input to various Candlestick pattern functions
Double Percent( 5), // Input to various Candlestick pattern functions
Double Factor( 2),  // Input to various Candlestick pattern functions
Double ADJ(0.0003), // Determines position of text
Bool StochFilter( FALSE) , // Determines if Stochastic filter is applied
Double StochHi( 80 ), // Upper limit for Stochastic filter
Double StochLo( 20 ), // Lower limit for Stochastic filter
Bool PercentRFilter( FALSE ), // Determines if %R filter is applied
Double PercentHi( 60 ), // Upper limit for %R filter
Double PercentLo( 40 ), // Lower limit for %R filter
Bool PlotOrNot( TRUE ), // If set to TRUE program will plot show me dots rather than text
Int Use3WhiteSoldiers( 1), // Use this Candlestick pattern (1 = yes, 0 = no)
Int Use3BlackCrows( 1), // Use this Candlestick pattern (1 = yes, 0 = no)
Int UseBullishHarami( 1), // Use this Candlestick pattern (1 = yes, 0 = no)
Int UseBearishHarami( 1), // Use this Candlestick pattern (1 = yes, 0 = no)
Int UseBullishEngulfing( 1), // Use this Candlestick pattern (1 = yes, 0 = no)
Int UseBearishEngulfing( 1), // Use this Candlestick pattern (1 = yes, 0 = no)
Int UseHammer( 1), // Use this Candlestick pattern (1 = yes, 0 = no)
Int UseHangingMan( 1), // Use this Candlestick pattern (1 = yes, 0 = no)
Int UseMorningDojiStar( 1), // Use this Candlestick pattern (1 = yes, 0 = no)
Int UseEveningDojiStar( 1), // Use this Candlestick pattern (1 = yes, 0 = no)
Int UseMorningStar( 1), // Use this Candlestick pattern (1 = yes, 0 = no)
Int UseEveningStar( 1), // Use this Candlestick pattern (1 = yes, 0 = no)
Int UsePiercingLine( 1), // Use this Candlestick pattern (1 = yes, 0 = no)
Int UseDarkCloud( 1), // Use this Candlestick pattern (1 = yes, 0 = no)
Int UseShootingStar( 1); // Use shooting star  (1 = yes, 0 = no)

This UNPROTECTED program (i.e. the TradeStation EasyLanguage show me study) is available for immediate download for $79.95 by clicking the ‘add to cart’ button to pay using credit card or PayPal. The download includes the unprotected functions used by the program: _CheckLastSeveral and _PatternCommentary together with plain text version of program 25 (with plots) and the two functions. The program requires TradeStation 9.0 or above. It won’t work with Multicharts.

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, 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.