0% found this document useful (0 votes)
28 views4 pages

ProRealTime Screener Formulas For Short Term Patterns 2

Uploaded by

anil sawant
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views4 pages

ProRealTime Screener Formulas For Short Term Patterns 2

Uploaded by

anil sawant
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

////////SHORT TERM PATTERN MASTER LIST////////

///CNLDD Screener///

C1 = close > 5

C2 = average[21](volume) > 1000000

C3 = roc[100](close) > 0

CNLDD = low < low[1] AND close < open AND low[1] < low[2] AND close[1] < open[1] AND low[2] <
low[3] AND close[2] < open[2]

C4 = CNLDD

criteria = roc[100](close)

SCREENER[c1 and c2 and c3 and c4] sort by criteria as "OneYearROC"

///////////////////////////////////////////////////

///MASnapBackPRScreener///

C1 = close > 5

C2 = average[21](volume) > 1000000

C3 = roc[100](close) > 0

MaSnapBackPctRkLookback = 252

MAperiod = 6

rnkCount = 0

Snap = (average[Maperiod](close) - close)

PercentSnap = (Snap / average[Maperiod](close))*100

FOR i = 1 TO MaSnapBackPctRkLookback DO

IF PercentSnap > PercentSnap[i] THEN

rnkCount = rnkCount + 1

endif

NEXT
MASnapBackPctRank = 100 * rnkCount / MASnapBackPctRkLookback

C4 = MASnapBackPctRank >= 90

criteria = MASnapBackPctRank

SCREENER[c1 and c2 and c3 and c4] sort by criteria as "MASnapBackPctRnk"

////////////////////////////////////////////////////////////////////////////////////////

/////////////////////////////////////////////////////////////////////////////////////////

///MASnapBackPRIndicator///

MaSnapBackPctRkLookback = 252

MAperiod = 6

rnkCount = 0

Snap = (average[Maperiod](close) - close)

PercentSnap = (Snap / average[Maperiod](close))*100

FOR i = 1 TO MaSnapBackPctRkLookback DO

IF PercentSnap > PercentSnap[i] THEN

rnkCount = rnkCount + 1

endif

NEXT

MASnapBackPctRank = 100 * rnkCount / MASnapBackPctRkLookback

C1 = MASnapBackPctRank

return C1 as "MASnapBackPctRnk"

//////////////////////////////////////////////////////////////////

////////////////////////////////////////////////////////////////
///IBS Indicator///

IBS = ((close - low) / (high - low)) * 100

Return IBS as "IBS"

///////////////////////////////////////////////////////////////////

///Cum IBS Screener///

C1 = close > 5

C2 = average[21](volume) > 1000000

C3 = roc[100](close) > 0

IBS = ((close - low) / (high - low)) * 100

CumIBS = summation[2](IBS)

C4 = CumIBS < 10

criteria = CumIBS

SCREENER[c1 and c2 and c3 and c4] sort by criteria as "CumIBS"

////////////////////////////////////////////////////////////////

////////////////////////////////////////////////////////////////

///Cum IBS Indicator///

IBS = ((close - low) / (high - low)) * 100

CumIBS = summation[2](IBS)

Return CumIBS as "Cum IBS"

///////////////////////////////////////////////////////////////////

///NHPB Screener///

C1 = close > 5

C2 = average[21](volume) > 1000000


C3 = roc[100](close) > 0

DD = low < low[1] and close < open

NH = close > highest[100](high[1])

NHC = summation[10](NH) >= 1

PB = summation[2](dd) >= 2

C4 = NHC AND PB

C5 = close < (highest[100](high) – averagetruerange[5](close)

criteria = roc[100](close)

SCREENER[c1 and c2 and c3 and c4 and c5] sort by criteria as "100 Day ROC%"

////////////////////////////////////////////////////////////////

///RSI2 Screener//////Remember to Check that Weekly RSI(2) is below 15///

C1 = close > 5

C2 = average[21](volume) > 1000000

C3 = roc[100](close) > 0

C4 = rsi[2] crosses under 5

criteria = roc[100](close)

SCREENER[c1 and c2 and c3 and c4] sort by criteria as "100 Day ROC%"

///////////////////////////////////////////

You might also like