After a long two weeks of our community being overly fascinated with technical analysis, and @TraderJim64 giving out his StrategyDesk codes to people on an individual basis, we thought this would be a great forum to distribute them.
The code below is for: Weekly minimum volume, 5EMA(-2)less than 34EMA(-2) and less than 5EMA now and the 5EMA has crossed the 34EMA.
(Bar[Volume,W] >= 1500000) AND
(ExpMovingAverage[EMA,Close,5,0,D,2] <
ExpMovingAverage[EMA,Close,34,0,D,2]) AND
(ExpMovingAverage[EMA,Close,5,0,D,2] < ExpMovingAverage[EMA,Close,5,0,D]) AND (MovingAverage[MA,Close,5,0,D] >
ExpMovingAverage[EMA,Close,34,0,D])
The code below is for: Weekly minimum vol, price > 2.00 <
(Bar[Volume,W,1] > 2500000) AND
(Bar[Close,D] > 2.00) AND
ExpMovingAverage[EMA,Close,5,0,30,1] <
ExpMovingAverage[EMA,Close,5,0,30]) AND
(ExpMovingAverage[EMA,Close,5,0,30,2] < ExpMovingAverage[EMA,Close,34,0,30,2]) AND (ExpMovingAverage[EMA,Close,5,0,30] >
ExpMovingAverage[EMA,Close,34,0,30] AND
ExpMovingAverage[EMA,Close,5,0,30,1] <=
ExpMovingAverage[EMA,Close,34,0,30,1])
The code below is for: Intraday volume scan – looking for increase in volume on 10 or 15 min charts
(Bar[Volume,D] >300000 AND
Bar[Volume,10]/Bar[Volume,10,1] > 2)
Click here to download them in a txt file for easy copy and pasting.