Crossover + Volume mini

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #78303 quote
    PhilippulusBlog
    Participant
    New

    Dears, please help me with correct coding to combine the crossover with minimum capital.

    This one has an error in the last line:

    mm7 = AVERAGE[7]
    mm23 = AVERAGE[23]
    dynamique = MOMENTUM(mm7-mm23) * 100 / CLOSE
    
    KapitalMini = 50000 // Capital minimal (in K)
    Kapital = Volume * WeightedClose / 1000
    KapitalOK = ( Kapital > KapitalMini )
    
    IF mm7 CROSSES UNDER mm23 THEN
    
    SCREENER(dynamique AS "Force")
    
    ENDIF
    
    SCREENER ["Force" AND KapitalOK]
    #78314 quote
    malaguti
    Participant
    New

    Replace “Force” with your variable, you should be ok

    SCREENER [dynamique AND KapitalOK]
    #78322 quote
    Vonasi
    Moderator
    Master

    PhilippulusBlog – Welcome to the forums. I see that this is your first post. Please use the ‘Insert PRT Code’ button when posting code in your future posts as it makes it so much easier for others to read. I have tidied up your post for you. 🙂

    #78344 quote
    PhilippulusBlog
    Participant
    New

    Sorry, that’s because I posted via mobile device.

    #78346 quote
    PhilippulusBlog
    Participant
    New

    SCREENER [dynamique AND KapitalOK]

    Thanks, I changed it according to and it works now:

    mm7 = AVERAGE[7]
    mm23 = AVERAGE[23]
    dynamic = MOMENTUM(mm7-mm23) * 100 / CLOSE
    
    KapitalMini = 50000000 // Minimum Capital (in K)
    Kapital = Volume * WeightedClose / 1000
    KapitalOK = ( Kapital > KapitalMini )
    
    IF mm7 CROSSES UNDER mm23 THEN
    SCREENER(dynamic AS "Force")
    ENDIF
    
    SCREENER [dynamic AND KapitalOK]

    But whatever ‘KapitalMini’ value I used, I tried 50,000, 500,000, 5,000,000, I never get less than 114 hits for US NYSE Stocks.
    What could the issue be?

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.

Crossover + Volume mini


ProScreener: Market Scanners & Detection

New Reply
Author
Summary

This topic contains 4 replies,
has 3 voices, and was last updated by PhilippulusBlog
7 years, 7 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 08/15/2018
Status: Active
Attachments: No files
Logo Logo
Loading...