Petite question sur ton code: A quoi correspond la variable "TOBESAVED=0"?
Pour ma mémoire: je dois toujours laisser "lock=0"?
Merci d'avance pour ton retour

Code : #
timeframe(4 hours,updateonclose)
indicator1 = CALL "Signal"(close)
c1 = (indicator1 = 1)
IF c1 AND timeEnterBefore AND timeEnterAfter AND not daysForbiddenEntry THEN
BUY 1 CONTRACT AT MARKET
ENDIF
// Conditions pour ouvrir une position en vente à découvert
indicator3 = CALL "Signal"(close)
c2 = (indicator3 = -1)
IF c2 AND timeEnterBefore AND timeEnterAfter AND not daysForbiddenEntry THEN
SELLSHORT 1 CONTRACT AT MARKET
ENDIF
SET stop ploss 35
set target pprofit 100
timeframe(1 minute)
startBreakeven = 20 //how much pips/points in gain to activate the breakeven function?
PointsToKeep = 3 //how much pips/points to keep in profit above of below our entry price when the breakeven is activated (beware of spread)
//reset the breakevenLevel when no trade are on market
IF NOT ONMARKET THEN
breakevenLevel=0
ENDIF
// --- BUY SIDE ---
//test if the price have moved favourably of "startBreakeven" points already
IF LONGONMARKET AND close-tradeprice(1)>=startBreakeven*pipsize THEN
//calculate the breakevenLevel
breakevenLevel = tradeprice(1)+PointsToKeep*pipsize
ENDIF
//place the new stop orders on market at breakevenLevel
IF breakevenLevel>0 THEN
SELL AT breakevenLevel STOP
ENDIF
// --- end of BUY SIDE ---
// --- SELL SIDE ---
//test if the price have moved favourably of "startBreakeven" points already
IF SHORTONMARKET AND tradeprice(1)-close>=startBreakeven*pipsize THEN
//calculate the breakevenLevel
breakevenLevel = tradeprice(1)-PointsToKeep*pipsize
ENDIF
//place the new stop orders on market at breakevenLevel
IF breakevenLevel>0 THEN
EXITSHORT AT breakevenLevel STOP
ENDIF
// --- end of SELL SIDE ---
Code : #
DEFPARAM CumulateOrders = False
DEFPARAM FLATAFTER = 173000
noEntryBeforeTime = 090000
timeEnterBefore = time >= noEntryBeforeTime
noEntryAfterTime = 170000
timeEnterAfter = time < noEntryAfterTime
ENTREE=11138 //Seuil de déclenchement pour entrer à l'achat sur le marché
//seuils déclenchant les protections de la position
Seuil1=6
seuil2=7
SL=20 //Stop Loss INITIAL
TP=50 //Target Profit
//gains minimums protégés
protect1=1
protect2 = 4
once lock1=0
once lock2 = 0
// Conditions pour ouvrir une position acheteuse
IF close<ENTREE and NOT longonmarket and timeEnterBefore AND timeEnterAfter THEN
BUY 1 CONTRACT AT ENTREE STOP
SELL AT ENTREE+TP LIMIT
SELL AT ENTREE-SL STOP
ENDIF
IF longonmarket then
SELL AT TRADEPRICE+TP LIMIT
SELL AT TRADEPRICE-SL STOP
if close>=(TRADEPRICE+SEUIL1) or lock1=1 then
lock1=1
SELL AT TRADEPRICE+protect1 STOP
endif
if close>=(TRADEPRICE+SEUIL2) or lock2=1 then
lock2=1
lock1=0
SELL AT TRADEPRICE+protect2 STOP
endif
ENDIF