Bonjour,
J’ai un script qui entre une position unique par bougie en achetant ou vendant un nombre Q de contracts par position.
J’aimerais pouvoir clôturer sur une seule bougie l’ensemble des positions prises sur une seule bougie, hors le script ne cloture qu’une seule position par bougie.
Voici un extrait de mon script :
“IF LongEntryCondition THEN
BUY Q CONTRACT AT MARKET
ENDIF
IF LongExitCondition THEN
SELL Q CONTRACT AT MARKET
ENDIF
IF ShortEntryCondition THEN
SELLSHORT Q CONTRACT AT MARKET
ENDIF
IF ShortExitCondition THEN
EXITSHORT Q CONTRACT AT MARKET
ENDIF”
Merci pour votre aide 🙂 !