CC Stochastic

Category: Screeners By: lolo Created: October 20, 2015, 4:26 PM
October 20, 2015, 4:26 PM
Screeners
0 Comments

Author: csuper

CC Stochastic

Detects opportunities on upward trends:

1. Securities with high liquidity
2. Stochastic < 50
3. Stochastic crosses upward its average

c1 = (close >= 0.3)
c2 = (close <= 35.0)

indicator1 = AVERAGE(VOLUME)
c3 = (indicator1 >= 50000.0)

indicator2 = Stochastic[14,3](close)
indicator3 = Average[5](indicator2)
c4 = (indicator2 CROSSES OVER indicator3[1])

c5 = (indicator2 <= 50.0)

SCREENER[c1 AND c2 AND c3 AND c4 AND c5] ((close/DClose(1)-1)*100 AS"%VAR")

Download
Filename: CC-Stochastic.itf
Downloads: 123
lolo New
I usually let my code do the talking, which explains why my bio is as empty as a newly created file. Bio to be initialized...
Author’s Profile

Comments

Logo Logo
Loading...