Discussione: entrata diversa da segnale
-
02-05-17, 17:02 #1
- Data Registrazione
- Oct 2013
- Messaggi
- 39
entrata diversa da segnale
Ciao a tutti,
in questo ts vorrei entrare n ticks sotto il segnale long ed n tick sopra l senale short
Che condizione devo aggiungere?
Grazie mille in anticipo
C.
Buy script
INPUTS:@price(VOLUME), @periods(21),@adxperiods(21),@open(0900),@close(17 30),
set C =CROSSOVER(ADX(@adxperiods), 20)
SET V =VolumeRateOfChange(@price, @periods)
SETtimeTrading = TIME > @open AND TIME < @close
V > 0 and C and timeTradin
-
03-05-17, 18:41 #2
-
03-05-17, 19:18 #3
- Data Registrazione
- Oct 2013
- Messaggi
- 39
Ciao Andrea,
non n tick dopo ma n tick sotto. Cioè una condizione in più oltre quelle del signal dello script
V > 0 and C and timeTrading
Quindi entra n tick sotto il prezzo a cui dovrebbe entrare: una volta verificate le condizioni V >0 e C e timetrading.
Grazie mille
Ciao