strategia a ingressi scaglionati

Forums ProRealTime forum Italiano Supporto ProOrder strategia a ingressi scaglionati

Viewing 2 posts - 1 through 2 (of 2 total)
  • #180824

    Buonasera vorrei creare una strategia ad ingressi scaglionati, praticamente la strategia long dovrebbe entrare alle 7 ed essere attiva fino alle 22 mentre per lo short l’ingresso dovrebbe

    essere alle 7 e l’uscita alle 18, come lo posso inserire sulla stassa strategia.

    grazie

    #180835

    Se vuoi aggiungere per l’operatività long e short questi intervalli temporali  basta che crei la condizione.

    Esempio:

    startTimeLong = 70000

    endTimeLong = 220000

    startTimeShort = 70000

    endTimeShort = 180000

    cTimeLong = time >= startTimeLong and time <= endTimeLong   // da aggiungere alle condizioni long

    cTimeShort = time >= startTimeShort and time <= endTimeShort // da aggiungere alle condizioni short

    Se vuoi uscire temporalmente in certi orari precisi (magari diversi da quelli sopra indicati) aggiungi :

    exitLongTime = xxx

    exitShortTime = yyy

    if time = exitLongTime then

    sell at market

    endif

    if time = exitShortTime then

    exitShort at market

    endif

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

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