Massimi e minimi con media mobile

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #130625 quote
    mquintmquint
    Participant
    New

    Buongiorno,

    sarei molto grato se mi aiutaste a formulare questi screener  :

    • la candela (totale, massimo e minimo compresi) di un determinato timeframe (daily e hour) non tocca, cioè è completamente fuori, rispetto  una determinata media mobile semplice (es. 10 periodi). Vorrei poter effettuare lo screener oltre che nei diversi timeframe  a candela ultimata.
    • la candela (totale, massimo e minimo compresi) di un determinato timeframe (daily e hour) non tocca, cioè è completamente fuori, rispetto  una determinata media mobile semplice (es. 10 periodi). Vorrei poter effettuare lo screener oltre che nei diversi timeframe  a candela “in formazione”.
    • una candela ultimata (daily e hour) crea un nuovo massimo/minimo nel periodo tra 3 candele prima e 30 candele prima.
    • una candela “in formazione” (daily e hour) sta generando un nuovo massimo/minimo nel periodo tra 3 candele prima e 30 candele prima.

     

    Grazie dell’attenzione e dell’eventuale cortese risposta

    #130677 quote
    robertogozzirobertogozzi
    Moderator
    Legend
    // - 1 -
    //
    TIMEFRAME(Daily)
    a1 = low  > average[10,0](close)
    b1 = high < average[10,0](close)
    TIMEFRAME(1 hour)
    a2 = low  > average[10,0](close)
    b2 = high < average[10,0](close)
    TIMEFRAME(default)
    a  = a1[1] AND a2[1]
    b  = b1[1] AND b2[2]
    SCREENER[a OR b]
    // - 2 -
    //
    TIMEFRAME(Daily)
    a1 = low  > average[10,0](close)
    b1 = high < average[10,0](close)
    TIMEFRAME(1 hour)
    a2 = low  > average[10,0](close)
    b2 = high < average[10,0](close)
    TIMEFRAME(default)
    a  = a1 AND a2
    b  = b1 AND b2
    SCREENER[a OR b]
    // - 3 -
    //
    TIMEFRAME(Daily)
    a = (high = highest[28](high[3]))
    TIMEFRAME(1 hour)
    b = (high = highest[28](high[3]))
    TIMEFRAME(default)
    x = a[1] AND b[1]
    SCREENER[x]
    // - 4 -
    //
    TIMEFRAME(Daily)
    a = (high = highest[28](high[3]))
    TIMEFRAME(1 hour)
    b = (high = highest[28](high[3]))
    TIMEFRAME(default)
    x = a AND b
    SCREENER[x]

    (non li ho provati)

    #130771 quote
    mquintmquint
    Participant
    New

    Intanto grazie.

    Appena riesco li provo e poi eventualmente ti aggiorno.

Viewing 3 posts - 1 through 3 (of 3 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

Massimi e minimi con media mobile


ProScreener: Scansione Mercati & Screener

New Reply
Author
author-avatar
mquint @mquint Participant
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by mquintmquint
6 years, 4 months ago.

Topic Details
Forum: ProScreener: Scansione Mercati & Screener
Language: Italian
Started: 05/08/2020
Status: Active
Attachments: No files
ProRealCode ProRealCode
Loading...