domanda su defparam flatbefore e flatafter
Forums › ProRealTime forum Italiano › Supporto ProOrder › domanda su defparam flatbefore e flatafter
- This topic has 3 replies, 2 voices, and was last updated 7 years ago by robertogozzi.
Viewing 4 posts - 1 through 4 (of 4 total)
-
-
06/29/2017 at 7:49 PM #3943806/29/2017 at 11:59 PM #39443
No, non è possibile, ma puoi usare TIME per fare questo lavoro. Esempio:
1234567891011121314151617181920212223242526272829303132333435363738...ONCE InizioLong = 090000 //iniziare i LONG solo dalle 09:00:00 in poiONCE FineLong = 160000 //niente più LONG dopo le 16:00:00ONCE InizioShort = 084500 //iniziare gli SHORT solo dalle 08:45:00 in poiONCE FineShort = 170000 //niente più SHORT dopo le 17:00:00...IF condizioni AND time >= InizioLong AND time < FineLong THEN //LONG solo nell'intervallo orario di cui sopraBUY 1 contract at marketENDIF...IF condizioni AND time >= InizioShort AND time < FineShortTHEN //SHORT solo nell'intervallo orario di cui sopraSELLSHORT 1 contract at marketENDIF...IF time = FineLong THEN //Chiudere le posizioni LONG all'ora stabilitaIF LongOnMarket THENSELL at marketENDIFENDIF...IF time = FineShort THEN //Chiudere le posizioni SHORT all'ora stabilitaIF ShortOnMarket THENEXITSHORT at marketENDIFENDIF...Potresti combinare anche TIME con i giorni per creare orari diversi secondo i giorni della settimana ecc…
06/30/2017 at 9:23 AM #3946706/30/2017 at 9:49 AM #39469Puoi usare
1CurrentDayOfWeekad ogni modo a questo link ci sono tutte le indicazioni utili https://www.prorealcode.com/documentation/category/dateandtime/
Puoi anche utilizzare la barra GOOGLE Search in alto nell’area blu, accanto ad HELP. Con quella trovi qualunque cosa compaia all’interno del sito ProRealCode, manuale istruzioni, esempi, strategie, ecc… Quindi indicando, ad esempio, DAX, trovi ogni cosa ci sia sul DAX (Ger30).
1 user thanked author for this post.
-
AuthorPosts
Viewing 4 posts - 1 through 4 (of 4 total)