Code : #
// Définition des paramètres du code
DEFPARAM CumulateOrders = true // Cumul des positions désactivé
c1 = signalAchat
c2 = signalVente
once compteurA =0
once compteurV =0
if c1 and shortonmarket then
buy at market
compteurV=0
compteurA=1
endif
if c1 and longonmarket and compteurA=1 then
sellshort at market
compteurV=0
compteurA=2
endif
if c2 and longonmarket then
sellshort at market
compteurV=1
compteurA=0
endif
if c2 and shortonmarket and compteurV=1 then
sellshort at market
buy at market
compteurV=2
compteurA=0
endif
bon j ai ce code qui marche pas ......
ce que je veut faire :
j ai :
c1 = signalAchat
c2 = signalVente
tant que j ai c1 , c2 , c1 , c2 , c1 , c2, c1 , c2; c1 ..... j achete je vend alternitevement pas de soucis .......
si j ai deux c1 a la suite je vend au deuxieme c1 et je maintiens la positon tant que j ai pas un c2
idem
si j ai deux c2 a la suite j achete au deuxieme c2 et je maintiens la positon tant que j ai pas un c1
voila si quelqu un a une idee ........