Tradurre codice TS Multicharts in PRT

Forums ProRealTime forum Italiano Supporto ProOrder Tradurre codice TS Multicharts in PRT

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

    Salve, qualche anima pia potrebbe tradurre questo TS  di Multicharts in PRT?

    Grazie

    // EasyLanguage (TradeStation) / PowerLanguage (MultiCharts) code// EasyLanguage (TradeStation) / PowerLanguage (MultiCharts) code// basic code to play around with 🙂
    // DAX, 5min time frame, default settings, exchange time
    input:  RangeMultiplier(0.95), BegTime(0900), EndTime(0955), CloseTime(2155), SkipDay(Friday), MyContracts(1);
    variables: minSetup(0), maxSetup(0), slLong(0), slShort(0), daily_factor(false);

    If Date <> Date[1] then begin maxSetup = 0; minSetup = 0;
    daily_factor = absvalue(opend(1)-closed(1))<0.75*(highd(1)-lowd(1));end;
    If daily_factor and Time >= BegTime and Time <= EndTime and Dayofweek(date) <> SkipDay and EntriesToday(date) = 0 then begin
    If maxSetup = 0 then begin // do once @ BegTime maxSetup = HighD(0) + RangeMultiplier * (HighD(0) – LowD(0)); slLong = HighD(0); end;
    Buy(“LEx”) MyContracts contracts Next Bar at maxSetup stop;

    If minSetup = 0 then begin // do once @ BegTime minSetup = LowD(0) – RangeMultiplier * (HighD(0) – LowD(0)); slShort = LowD(0); end;
    SellShort(“SEx”) MyContracts contracts Next Bar at minSetup stop;
    end;
    Sell(“LXx”) from entry(“LEx”) Next Bar at slLong stop;BuyToCover(“SXx”) from entry(“SEx”) Next Bar at slShort stop;
    If Time >= CloseTime then begin Sell(“TimeLXx”) from entry(“LEx”) Next Bar market; BuyToCover(“TimeSXx”) from entry(“SEx”) Next Bar at market;end;
    Setstopcontract;SetStopLoss(1000);SetExitOnClose;

    #46498

    Dove hai ricevuto questo codice? Qual è lo strumento e il tempo impiegato? Come sono finora i risultati della strategia? Grazie.

    #46505

    Un mio amico me lo ha dato. Lo strumento fimanziario e’ il Dax con TF 1h
    Tu lo sai tradurre in Prt ?
    Grazie

    #47815

    NESSUNA IDEA?

    #47822
    R05

    Ciao prova a vedere questo link in fondo alla pagina sul commento di Andrea Unger, mi sembra simile, puoi verificare, per comodità te lo riporto

     

    https://www.prorealcode.com/prorealtime-trading-strategies/dax-5-min-trading-strategy-by-andrea-unger/

    #47939

    Grazie, visto le performance, non credo sia quello giusto,  bisognerebbe tradurre il codìdice che ho postato…

    comunque, grazie tante!!

    #48411

    dovrebbe seguire questa Equity

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