Trampoline Scan Code

Forums ProRealTime English forum ProScreener support Trampoline Scan Code

Viewing 4 posts - 1 through 4 (of 4 total)
  • #180863

    I have the following code, but not executing –

    // Trampoline Daily
    TIMEFRAME(weekly)
    c1 = MACD(S,L,Si](close)>0
    TIMEFRAME(daily)
    c2 = (Low) CROSSES UNDER Average[50](Close)
    TIMEFRAME(daily)
    c3 = Average[50](Close)>=Average[50](Close)[1]
    TIMEFRAME(daily)
    c4 = Volume>100000 AND (Close)>2.99
    SCREENER [c1 AND c2 AND c3 AND c4]

    Conditions –

    Macd histogram >0

    day’s low crosses below SMA50

    SMA50 today >= SMA50 yesterday

    Volume > 100,000 AND Close > 2.99

    Appreciate any/all help!!

    Thanks!!

     

     

    #180865

    You should have been returned an error because MACD’s opening bracket “[” is mistakingly replaced by “(“.
    It’s now working on my platform, Daily TF, 1K units.

    #180868

    Thanks! I made the change, but still received error message –

    (see attachment)

     

    Thanks again!

    #180873

    You have to replace variables S,L snd Si with numeric constants or assign them a numeric constant.

    this should do.

     

Viewing 4 posts - 1 through 4 (of 4 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login