STOCHASTIC CROSSES SCREENER

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #239239 quote
    matarescmataresc
    Participant
    New

    Hi,

    I´m searching for a screener that can detect on given markets bullish and bearish stochastic crosses. So far I have not found anything.

    Any one could pls help by sharing the code or indicating me were I can buy it ?

    Thanks

    Mariano

    #239241 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    There you go:

    myStochastic = Stochastic[14,3](close)
    mySignal     = average[6,0](myStochastic)
    Result       = 0
    IF myStochastic CROSSES OVER mySignal THEN
       Result    = 1
    ELSIF myStochastic CROSSES UNDER mySignal THEN
       Result    = 2
    ENDIF
    SCREENER[Result AND (high <> low)](Result AS "1=Up,2=Down")
    Iván González thanked this post
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.
ProRealAI ProRealAI New

Stuck on this ProBuilder code?

Describe what this topic is trying to build, in plain English, and ProRealAI writes the ProRealTime™ indicator, screener or system for you.

Available in 7 languages
Try ProRealAI

STOCHASTIC CROSSES SCREENER


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
mataresc @mataresc Participant
Summary

This topic contains 1 reply,
has 2 voices, and was last updated by robertogozzirobertogozzi
1 year, 11 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 10/19/2024
Status: Active
Attachments: No files
ProRealCode ProRealCode
Loading...