The scan results automatically open in the daily graph

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #35808 quote
    balancebalance
    Participant
    Junior

     

    Hello,
    The scanner code is attached.

    I do not understand why every share automatically opens to me on the daily graph.
    Is the scanner programmed to ask all its questions on the weekly graph?
    And my spot is automatically opened on the weekly chart?

    So why do the crawler’s results automatically replace the daily graph?

    // The following code is related to this timescale:weekly
    TIMEFRAME(weekly)
    indicator1 = Average[25](Volume)
    c1 = (indicator1 >= 750000)
    
    // The following code is related to this timescale:weekly
    TIMEFRAME(weekly)
    indicator2, ignored = CALL "SEQUENSES SCANNING (v1)"
    c2 = (indicator2[1] < 0)
    
    // The following code is related to this timescale:weekly
    TIMEFRAME(weekly)
    indicator3, ignored = CALL "SEQUENSES SCANNING (v1)"
    c3 = (indicator3 > 0)
    
    
    TIMEFRAME(weekly)
    indicator4 = Average[10](close)
    c4 = (close > indicator4)
    
    
    TIMEFRAME(weekly)
    indicator5 = Average[10](close)
    c5 = (close[4] > indicator5[4])
    
    
    TIMEFRAME(weekly)
    indicator6 = Average[10](close)
    c6 = (close[8] > indicator6[8])
    
    
    TIMEFRAME(weekly)
    indicator7 = Average[10](close)
    c7 = (close[12] > indicator7[12])
    
    // The following code is related to this timescale:daily
    TIMEFRAME(weekly)
    indicator8 = Average[10](close)
    c8 = (close[16] > indicator8[16])
    
    // The following code is related to this timescale:DEFAULT
    TIMEFRAME(weekly)
    
    SCREENER[c1 AND c2 AND c3 AND c4 AND c5 AND c6 AND c7 AND c8] ((close/DClose(1)-1)*100 AS "%Chg yest.")
    
Viewing 1 post (of 1 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

The scan results automatically open in the daily graph


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
balance @balance Participant
Summary

This topic contains 1 voice and has 0 replies.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 05/17/2017
Status: Active
Attachments: No files
ProRealCode ProRealCode
Loading...