Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Unger Miglior Giorno Per Andare A Mercato Sul Settimanale
- // Ottimizzazione da 1 a 5 o da 1 a ... usa il plot sotto per vedere quando il mercato è aperto
- // Mettere input a 0 per escludere o long o short
- // Timeframe Giornaliero
- // Se Ottimizzati Insieme I Risultati Cambiano Del Farlo Separatamente Per Poi Unirli Alla Fine
- // Attenzione l'acquisto è alla candela successiva quindi anche se giorno 1 è Lunedì entrerà a mercato giorno 2 Martedì etc... !!! //
- // Long
- Input:
- My_TDOM_Long(1);
- if Dayofweek(Date) = My_TDOM_Long and Marketposition = 0 then begin
- buy next bar at Market;
- end;
- if Marketposition = 1 then sell next bar at market;
- // Short
- Input:
- My_TDOM_Short(1);
- if Dayofweek(Date) = My_TDOM_Short and Marketposition = 0 then begin
- Sellshort next bar at Market;
- end;
- if Marketposition = -1 then Buytocover next bar at market;
- // Creare un indicatore per plottare i giorni //
- //plot1(Dayofweek(Date));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement