Hello, I am a beginner and I would like help to generate a screener with these conditions on a daily timeframe:
- Moving average 20 volumes today> M.M. 20 volumes 5 days ago;
- adx> 15
- adx today> adx yesterday
- dm + bullish crossing dm- (the crossing took place today, or if possible not beyond yesterday’s bar)
Thanks to those who can help.
You shouldn’t use the “Insert PRT code” to write text, that’s reserved for code to make it easier to read. Thank you 🙂
EmmeLS – Welcome to the forums.
There are some simple rules that everyone using the forums is expected to follow. You have not followed this one:
Give your topic a meaningful title. Describe your question or your subject in your title. Do not use meaningless titles such as ‘Coding Help Needed’.
I have edited your post. 🙂
There you go:
VolumeMA = average[20,0](Volume)
c1 = VolumeMA > VolumeMA[5]
MyAdx = Adx[14]
c2 = MyAdx > 15 AND MyAdx > MyAdx[1]
c3 = summation[2](DIplus[14](close) CROSSES OVER DIminus[14](close))
Result = c1 AND c2 AND c3
SCREENER[Result]
I ask forgiveness for the post insertion error, I am a beginner.
Thanks Roberto, I would like to create a screen that identifies the crossing of the DM + (green) with DM- (red); adx (black) increasing and> of 15; Moving average 20 periods on volumes up compared to 7 days before. can you help me? Thanks..
I have seen your answer now! THANKS!!!