// Définition des paramètres du code
DEFPARAM CumulateOrders = False // Cumul des positions désactivé
// INIT
BigRange = 0 // Est ce comme ceci ???
// ********************************* Indicateurs ***************************************//
//Stop Suiveur Baissier
c1=highest[3](high)+1/3*AverageTrueRange[20](close)
StopSuiveurBaissier=lowest[10](c1)
// Bande de Bollinger Inferieure
BollInf20 = Average[20](close)-2*std[20](close)
//****** Conditions pour OUVRIR une position Short ******************* //
HA = close < BollInf20
// ----------- TEST DU BIG RANGE -------------- //
IF (Open - Close ) > 50 AND HA THEN
BigRange = 1
ENDIF
//----------------------------------------------//
// Conditions pour FERMER une position Short
FermShort = Close CROSSES OVER StopSuiveurBaissier
// ****** OUVERTURE POSITION SHORT ************* //
//IF HA AND NOT BigRange and Not SHORTONMARKET THEN
IF HA AND NOT BigRange AND NOT SHORTONMARKET THEN
SELLSHORT 1 SHARES AT MARKET
ENDIF
// ****** FERMETURE POSITION SHORT ************* //
IF FermShort AND SHORTONMARKET THEN
EXITSHORT AT MARKET
ENDIF