trading system Reversal multicharts

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #82694 quote
    GianlucaGianluca
    Participant
    Master

    ///trading system Reversal su STOXX – STILLER
    ///data1 15 min – data2 1440

    input: nBar(5), mystop(2000), myprofit(1000),Mul(0.95),DonchianExitLenght(1){, NumBarreExit(0)};

    ////definizione del donchian per l’ingresso e per l’uscita
    var: triglong(false), trigshort(false),exitlong(false), exitshort(false);
    triglong = l highest(high of data2, nBar);
    exitlong = h > highest(High of data2, DonchianExitLenght);
    exitshort = l Mul *average(Range of data2, 22) of data2;

    If vola then begin
    if triglong then buy (“EL_STOXX_Stiller”) next bar at low limit;
    If trigshort then sellshort (“ES_STOXX_Stiller”) next bar at high limit;
    end;

    //////////// EXIT sui massimo/minimi
    if exitlong then Sell (“Exit_L_STOXX_Stiller”)next bar at high limit;
    if exitshort then Buytocover (“Exit_S_STOXX_Stiller”) next bar at low limit;

    {
    if marketposition > 0 and barssinceentry> NumBarreExit then sell next bar at market;
    if marketposition NumBarreExit then buytocover next bar at market;
    }

    setstoploss(mystop);
    setprofittarget(myprofit);

    #82708 quote
    NicolasNicolas
    Keymaster
    Legend

    Pensavo che ora tu fossi abituato a usare correttamente un forum 😐 Ma non sembra 🙁
    Nessuna spiegazione? Nessun altro messaggio educato che copia / incolla di un codice e voilà! Pensi che i robot traducano automaticamente tutto ciò che chiedi?

    A proposito, la stessa conversione di codice è già stata richiesta in questo argomento da un altro membro:
    https://www.prorealcode.com/topic/traduzione-da-multicharts/

    #82731 quote
    GianlucaGianluca
    Participant
    Master

    Non avevo capito che venisse creato un post ho solo compilato il form non lo sapevo 🙂 Scusami 🙁

    #82782 quote
    NicolasNicolas
    Keymaster
    Legend

    ok non ti preoccupare. Tradurrò il codice nell’altro argomento che ho menzionato sopra. Ci vediamo lì.

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

trading system Reversal multicharts


ProBuilder: Indicatori & Strumenti Personalizzati

New Reply
Author
author-avatar
Gianluca @altares Participant
Summary

This topic contains 3 replies,
has 2 voices, and was last updated by NicolasNicolas
7 years, 11 months ago.

Topic Details
Forum: ProBuilder: Indicatori & Strumenti Personalizzati
Language: Italian
Started: 10/13/2018
Status: Active
Attachments: No files
ProRealCode ProRealCode
Loading...