STOP TRADE EN COURS
Forums › ProRealTime forum Français › Support ProOrder › STOP TRADE EN COURS
- This topic has 6 replies, 4 voices, and was last updated 3 months ago by GraHal.
-
-
07/16/2024 at 3:46 PM #235326
Bonjour les experts, pouvez vous m’aider à trouver un code qui puisse stopper mon trade quand il se trouve dans la configuration suivante (voir PJ), c’est à dire le stopper quand il est à son pic et éviter la chute qui arrive et annule la belle progression. Par avance merci.
07/16/2024 at 6:19 PM #235328Le voici, vous pouvez voir à partir des variables affichées avec GRAPH lorsque les modèles de sortie se produisent (à condition que l’opération soit en profit):
1234567891011121314151617181920212223242526272829303132ONCE N = 10Sma100 = average[100,0](close)LongCond = close CROSSES OVER Sma100ShortCond = close CROSSES UNDER Sma100Body = abs(close - open)BodyCond = Body > (range * 0.75) //Body must be > 75% of the rangeRangeCond = range >= average[N,0](range)Bullish = close > openBearish = close < openHH = max(high,high[1]) = highest[N](high)LL = min(low,low[1]) = lowest[N](low)UpperSwing = HH AND Bearish AND Bullish[1] AND BodyCond AND RangeCondLowerSwing = LL AND Bullish AND Bearish[1] AND BodyCond AND RangeCondIF Not OnMarket THENIF LongCond THENBUY 1 CONTRACT AT MARKETELSIF ShortCond THENSELLSHORT 1 CONTRACT AT MARKETENDIFSET TARGET pPROFIT 500SET STOP pLOSS 100ELSEIF PositionPerf > 0 THENIF LongOnMarket AND UpperSwing THENSELL AT MARKETELSIF ShortOnMarket AND LowerSwing THENEXITSHORT AT MARKETENDIFENDIFENDIFgraph LongOnMarket AND (PositionPerf > 0) AND UpperSwing coloured("Red")graph ShortOnMarket AND (PositionPerf > 0) AND LowerSwing coloured("Blue")1 user thanked author for this post.
07/16/2024 at 6:37 PM #23533207/16/2024 at 7:27 PM #235334Le code de Roberto (2 articles ci-dessus) ajouté en tant que journal 389 ici…
Bibliothèque de liens d’extraits
1 user thanked author for this post.
07/17/2024 at 8:27 AM #235355Je pense qu'on pourra rarement sortir au point le plus haut ou entrer au point le plus bas d'une opération… Pour tenter de sortir avant une correction vous pouvez utiliser par exemple un oscillateur comme RSI, Stochastic, CCI, etc. qui vous permettent de détecter les zones extrêmes.
07/17/2024 at 11:47 AM #235376Insérez cette partie dans votre code, peu importe où, tant que votre code ne contient pas de variables du même nom, auquel cas vous devrez la modifier même en ajoutant un seul caractère.
1234567891011121314151617181920ONCE N = 10Sma100 = average[100,0](close)LongCond = close CROSSES OVER Sma100ShortCond = close CROSSES UNDER Sma100Body = abs(close - open)BodyCond = Body > (range * 0.75) //Body must be > 75% of the rangeRangeCond = range >= average[N,0](range)Bullish = close > openBearish = close < openHH = max(high,high[1]) = highest[N](high)LL = min(low,low[1]) = lowest[N](low)UpperSwing = HH AND Bearish AND Bullish[1] AND BodyCond AND RangeCondLowerSwing = LL AND Bullish AND Bearish[1] AND BodyCond AND RangeCondIF OnMarket AND PositionPerf > 0 THENIF LongOnMarket AND UpperSwing THENSELL AT MARKETELSIF ShortOnMarket AND LowerSwing THENEXITSHORT AT MARKETENDIFENDIF07/17/2024 at 1:31 PM #235392Stratégie de sortie ci-dessus ajoutée en tant que journal 390 ici…
1 user thanked author for this post.
-
AuthorPosts
Find exclusive trading pro-tools on