stop loss che si fissi
Forums › ProRealTime forum Italiano › Supporto ProOrder › stop loss che si fissi
- This topic has 10 replies, 3 voices, and was last updated 1 year ago by robertogozzi.
-
-
06/08/2023 at 5:28 PM #215873
Mi piacerebbe uno stop löss che si fissi ad un certo numero di punti dal profit, sia in positivo che in negativo. Forse la cosa già esiste, magari in maniera diversa.
Comunque sarebbe bello avere uno stop che si aggiorni ad ogni candela.
Grazie
06/08/2023 at 5:55 PM #215875Si può aggiornare ogni candela, ma su quale base? Pips, Atr o altro?
06/08/2023 at 6:06 PM #215876Pips
Grazie
06/08/2023 at 6:07 PM #215877Anche atr, ma non so come funzionerebbe,
Grazie
06/10/2023 at 9:20 AM #215948Non lo ritieni interessante da fare?
06/10/2023 at 4:53 PM #215953Questo è in pips, e ad ogni candela si aggiorna. Se inizi con 50 pips di stop (esempio Long), se il prezzo va su, alla candela successiva lo stoip loss sarà sempre di 50 pip, ma calcolati dal prezzo corrente, non quello iniziale. Se arrivi ad un profitto di 60 pips, allora lo stop loss sarà a +10 pips di profitto (sempre 50 pips di distanza dal prezzo attuale):
12345678910111213141516171819202122232425SL = 150TP = SL * 3Sma = average[20,0](close)IF Not OnMarket THENIF close CROSSES OVER Sma THENBUY AT MARKETStopLoss = close - SL*PipSizeTakeProfit = close + TP*PipSizeELSIF close CROSSES UNDER Sma THENSELLSHORT AT MARKETStopLoss = close + SL*PipSizeTakeProfit = close - TP*PipSizeENDIFELSEIF LongOnMarket THENStopLoss = max(StopLoss,close - SL*PipSize)ELSIF ShortOnMarket THENStopLoss = min(StopLoss,close + SL*PipSize)ENDIFENDIFSET TARGET PRICE TakeProfitSET STOP PRICE StopLoss//graphOnPrice TakeProfit coloured("Blue")//graphonprice StopLoss coloured("Red")//graph (close - StopLoss) / PipSize06/10/2023 at 8:09 PM #21595506/11/2023 at 9:04 AM #215958Sempre gentilissimo, lo provo.
Grazie
06/12/2023 at 12:12 PM #215997Le linee 16 e 18 servono proprio a non fare tornare indietro lo Stop Loss.
1 user thanked author for this post.
06/13/2023 at 6:58 PM #21616106/14/2023 at 5:59 PM #216232Eccolo in percentuale:
1234567891011121314151617181920212223242526272829SLpercent = 1.0TPpercent = SLpercent * 3.0Sma = average[20,0](close)IF Not OnMarket THENIF close CROSSES OVER Sma THENBUY AT MARKETSL = (close * SLpercent / 100) / PipSizeTP = (close * TPpercent / 100) / PipSizeStopLoss = close - SLTakeProfit = close + TPELSIF close CROSSES UNDER Sma THENSELLSHORT AT MARKETSL = (close * SLpercent / 100) / PipSizeTP = (close * TPpercent / 100) / PipSizeStopLoss = close + SLTakeProfit = close - TPENDIFELSEIF LongOnMarket THENStopLoss = max(StopLoss,close - SL*PipSize)ELSIF ShortOnMarket THENStopLoss = min(StopLoss,close + SL*PipSize)ENDIFENDIFSET TARGET PRICE TakeProfitSET STOP PRICE StopLoss//graphOnPrice TakeProfit coloured("Blue")//graphonprice StopLoss coloured("Red")//graph (close - StopLoss) / PipSize1 user thanked author for this post.
-
AuthorPosts
Find exclusive trading pro-tools on