SL Anweisung und TAke Profit
Forums › ProRealTime Deutsch forum › ProOrder Support › SL Anweisung und TAke Profit
- This topic has 6 replies, 3 voices, and was last updated 1 year ago by Suffi.
-
-
09/25/2023 at 8:29 AM #221542
Hallo,
ich krieg es nicht hin.
Ich möchte das der Stop loss auf dem Tiefsten Tief der letzen 5 Kerzen liegt. Der Take profit soll 1:2 sein!
Das heißt Take Profit = Abstand zwischen Einstiegspreis und Stop loss * 2
Hier der Code der nicht funktioniert
c7 = close-(Lowest[5](low))
set stop loss c7
set target profit c7*2
was ist falsch?
09/25/2023 at 10:51 AM #221549In den Tests, die ich durchgeführt habe, funktioniert es perfekt:
12345678DEFPARAM CumulateOrders = FalseIF close CROSSES OVER average[20,0](close) AND Not OnMarket THENBUY AT Marketc7 = close-(Lowest[5](low))set stop loss c7set target profit c7*2ENDIFgraph c709/25/2023 at 1:03 PM #221557das verstehe ich nicht.
funktioniert es auch in dieem Code bei Ihnen?
DEFPARAM CumulateOrders = False // Kumulieren von Positionen deaktiviert
// Bedingungen zum Einstieg in Long-Positionen
indicator1 = TenkanSen[9,26,52]
indicator2 = KijunSen[9,26,52]
c1 = (indicator1 > indicator2)
indicator3 = SenkouSpanA[9,26,52]
indicator4 = SenkouSpanB[9,26,52]
c2 = (indicator3 > indicator4)
indicator5 = SenkouSpanA[9,26,52]
c3 = (close > indicator5)IF not ONMARKET and c1 AND c2 AND c3 THEN
BUY 1 SHARES AT MARKETc7 = close-(Lowest[5](low))
set stop loss c7
set target profit c7*2
ENDIF
graph c709/25/2023 at 3:20 PM #221566Ja, es funktioniert großartig für mich.
Wenn Sie ein Mindestlimit für den Stop-Loss festlegen möchten, können Sie Folgendes schreiben:1c7 = max(20*pipsize,close-(Lowest[5](low))) //minimum 20 pips09/26/2023 at 6:49 AM #22159209/26/2023 at 12:04 PM #22160909/26/2023 at 3:52 PM #221618 -
AuthorPosts