trading system Reversal multicharts

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #82694 quote
    Gianluca
    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 < lowest(low of data2, nBar); trigshort = h > highest(high of data2, nBar);
    exitlong = h > highest(High of data2, DonchianExitLenght);
    exitshort = l < lowest(Low of data2, DonchianExitLenght); /////definizione filtro di vola - espansione var: vola(false); vola=average(Range of data2, 2)of data2 > 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 < 0 and barssinceentry> NumBarreExit then buytocover next bar at market;
    }

    setstoploss(mystop);
    setprofittarget(myprofit);

    #82708 quote
    Nicolas
    Keymaster
    Master

    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
    Gianluca
    Participant
    Master

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

    #82782 quote
    Nicolas
    Keymaster
    Master

    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.

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 Nicolas
7 years, 5 months ago.

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