Beyond charts + Code to convert

Forums ProRealTime English forum ProScreener support Beyond charts + Code to convert

Viewing 7 posts - 1 through 7 (of 7 total)
  • #79688

    Hi

    I’d like to convert my Beyond Charts + scan code into a form that I can paste into the ProRealTime Screener….. is anyone able to do this?

    {Close above highest high in 26 wks, close above 60EMA, with a dominant green candle, on volume greater than 20% of moving average of the volume, a short wick and liquidity filter}

    HighestHigh:= C> Ref (HHV(H,26),-1);

    GreenCandle:= C> O;

    BigGreen:= C-O>1.5*Mov(ref(ABS(C-O),-1),15,W);

    BigMA:= C > Mov (C,60,E);

    Y:= 13;

    Y1:= 20;

    Percent:= Y1/100;

    Multiple:=Percent+1;

    VEMA:= Mov (V,Y,E);

    HighVolume:= V > Multiple*VEMA;

    ShortWick:= ShortWick:= H-C<0.50*(C-O);

    AvgClose:= Mov(C,21,S);

    AvgVolume:= Mov(V,21,S);

    MinVolume:= ref(LLV(V,13),-1);

    Liquidity:= AvgVolume*AvgClose>1000000;

    Signal:= HighestHigh AND GreenCandle AND HighVolume AND BigMA AND BigGreen AND ShortWick AND Liquidity;

    Signal;

     

    Thank you in Anticipation!

    #79695

    Hi,

    You can try the code below, please let us know if it is correctly converted! Once a signal is found, how do you use it as a trigger to enter a position? I assume it is made for weekly charts?

     

    #79713

    Thank you @Cheriem3 for the strategy and @Nicolas for the code.

    Works well in an Auto-System on DJI 5 min, 100k bars, spread = 4.

    #79722

    Sorry? GraHal already made a strategy from it? 😆 you’re a coding junkie! Please share or better open a new topic to discuss about 🙂

    #79739

    you’re a coding junkie!

    I’m not good at coding, but I am very curious and like to get a System out there and working for it’s living!  🙂

    Yeah I’ll start a new Topic (else be Systems mixed with Screeners) but all I added was TP and SL but maybe somebody can add inverse conditions for short entry.

    1 user thanked author for this post.
    #79816

    Hi

    Thank you so much!

    Yes it’s for my weekly equities system (I use CFDs), but also works for daily candles, and across other instruments like FX, commodities, indices. If i get a signal I eyeball to make sure the chart is in an uptrend, not congestion, and that it’s a “first” signal, meaning any prior signal must be either stopped out by my rad chandelier, or followed by a period of congestion (defined by 3 touches of a resistance line). If I have more candidates than needed I also have a process for choosing between them. But the signal is the trigger to enter (the code filters for a set up and a trigger).

    1 user thanked author for this post.
    #79818

    Ok thanks for the explanation! I’ll add this one into the Library. Feel free to ask for any other conversion, and in a different topic.

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

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