Trendwechsel short long
Forums › ProRealTime Deutsch forum › ProOrder Support › Trendwechsel short long
- This topic has 8 replies, 3 voices, and was last updated 1 year ago by killerplatuze.
-
-
01/13/2023 at 8:03 PM #207399
Moin,
wenn der Trend wechselt soll die Position gedreht werden, das klappt soweit auch. Nur wenn ich die Bedingungen longonmarket und shortonmarket hinzu füge dann findet laut Auswertung kein Wechsel mehr statt.
Ich möchte den Trade mit 2 Kontrakten eröffnen und einen Kontrakt bei TP 50 verkaufen, den zweiten beim Trendwechsel. Was ist falsch?
1234567891011121314151617181920212223242526272829303132333435363738Gruen = myMagicTrend > myMagicTrend[1]Rot = myMagicTrend < myMagicTrend[1]// Verhindert das Trading an bestimmten WochentagendaysForbiddenEntry = OpenDayOfWeek = 6 OR OpenDayOfWeek = 0// Bedingungen zum Einstieg in Long-PositionenIF Gruen AND not daysForbiddenEntry THENBUY 2 CONTRACT AT MARKETENDIF//Bedingungen zum Ausstieg von Long-Positionenif longonmarket thenif close - tradeprice(1) >= 50 thenSELL 1 CONTRACT AT MARKETendifendifIF Rot THENSELL AT MARKETENDIF// Bedingungen zum Einstieg in Short-PositionenIF Rot AND not daysForbiddenEntry THENSELLSHORT 2 CONTRACT AT MARKETENDIF// Bedingungen zum Ausstieg aus Short-Positionenif shortonmarket thenif TRADEPRICE(1) - CLOSE >= 50 thenEXITSHORT 1 CONTRACT AT MARKET//endifIF gruen THENEXITSHORT AT MARKETENDIFENDIFENDIF01/13/2023 at 8:30 PM #207400Servus
Probier mal das :
1234567891011121314151617181920212223242526272829303132333435363738394041// Festlegen der Code-ParameterDEFPARAM CumulateOrders = False // Kumulieren von Positionen deaktiviertmyMagicTrend = CALL "Magic Trend custom"[20, 9, 2, 5]Gruen = myMagicTrend > myMagicTrend[1]Rot = myMagicTrend < myMagicTrend[1]// Verhindert das Trading an bestimmten WochentagendaysForbiddenEntry = OpenDayOfWeek = 6 OR OpenDayOfWeek = 0// Bedingungen zum Einstieg in Long-PositionenIF Gruen AND not daysForbiddenEntry THENBUY 2 CONTRACT AT MARKETENDIF//Bedingungen zum Ausstieg von Long-Positionenif longonmarket and close - tradeprice(1) >= 50 thenSELL 1 CONTRACT AT MARKETendifIF Rot THENSELL AT MARKETENDIF// Bedingungen zum Einstieg in Short-PositionenIF Rot AND not daysForbiddenEntry THENSELLSHORT 2 CONTRACT AT MARKETENDIF// Bedingungen zum Ausstieg aus Short-Positionenif shortonmarket and TRADEPRICE(1) - CLOSE >= 50 thenEXITSHORT 1 CONTRACT AT MARKETIF gruen THENEXITSHORT AT MARKETENDIFENDIF1 user thanked author for this post.
01/13/2023 at 8:39 PM #207401Wenn Du versuche mit dem Take Profit machen willst habe Ich Dir folgende Datei da gibt es dann eine Variable da kannst Du dann Filtern was am besten ist .
Die KP1.itf kannst Du über die Importfunktion hinzufügen
Im Anhang der Report
2 users thanked author for this post.
01/13/2023 at 9:12 PM #207408Hmm, geht aber trotzdem nicht. Es sind doppelt soviele longs wie shorts wenn ich das hier raus nehmen
Wenn ich die Zeile 18/19 und 34/35 rausnehme dann passt es wieder, sind auch nur ein Bruchteil der Trades.
01/14/2023 at 8:13 PM #207447Hallo
Ja komischerweise schließt er schließt er manche Long Positionen und eröffnet dann gleich wieder Neue Long Positionen .
Sorry habe leider keine Lösung dafür vielleicht Antwortet ja noch einer von den Spezialisten robertogozzi oder Nicolas die haben mir bisher immer sehr gut geholfen .Und Ich habe bisher noch kein Handelssystem für mich gefunden das dauerhaft gute Gewinne liefert
Wünsche Dir eine gute Zeit mein Abo bei EdgebyRs ist nun ja ausgelaufen und werden mich wieder mehr den MichaBL`s Drehpunkten widmen da lässt sich einfacher
Geld verdienen .Gruß
1 user thanked author for this post.
01/16/2023 at 8:06 PM #207519Hat jemand hierzu eine Lösung oder gibt es keine?
01/17/2023 at 4:40 PM #207572Versuche dies:
1234567891011121314151617181920212223242526272829303132333435363738394041424344// Festlegen der Code-ParameterDEFPARAM CumulateOrders = False // Kumulieren von Positionen deaktiviertmyMagicTrend = CALL "Magic Trend custom"[20, 9, 2, 5]Gruen = (myMagicTrend > myMagicTrend[1])Rot = (myMagicTrend < myMagicTrend[1])IF Gruen = 0 AND Rot = 0 THENGruen = Gruen[1]Rot = Rot[1]ENDIF// Verhindert das Trading an bestimmten WochentagendaysForbiddenEntry = OpenDayOfWeek = 6 OR OpenDayOfWeek = 0// Bedingungen zum Einstieg in Long-PositionenIF Gruen AND Rot[1] AND not daysForbiddenEntry AND Not OnMarket THENBUY 2 CONTRACT AT MARKETENDIF//Bedingungen zum Ausstieg von Long-Positionenif longonmarket and close - tradeprice(1) >= TP AND abs(CountOfPosition) = 2 thenSELL 1 CONTRACT AT MARKETendifIF Rot THENSELL AT MARKETENDIF// Bedingungen zum Einstieg in Short-PositionenIF Rot AND Gruen[1] AND not daysForbiddenEntry THENSELLSHORT 2 CONTRACT AT MARKETENDIF// Bedingungen zum Ausstieg aus Short-Positionenif shortonmarket and TRADEPRICE(1) - CLOSE >= TP thenEXITSHORT 1 CONTRACT AT MARKETIF gruen THENEXITSHORT AT MARKETENDIFENDIF1 user thanked author for this post.
01/17/2023 at 4:49 PM #207574Ich habe einige Fehler korrigiert und einen Handelsplan hinzugefügt, den ich auf 24 Stunden eingestellt habe:
123456789101112131415161718192021222324252627282930313233343536373839404142// Festlegen der Code-ParameterDEFPARAM CumulateOrders = False // Kumulieren von Positionen deaktiviertmyMagicTrend = CALL "Magic Trend custom"[20, 9, 2, 5]Gruen = (myMagicTrend > myMagicTrend[1])Rot = (myMagicTrend < myMagicTrend[1])IF Gruen = 0 AND Rot = 0 THENGruen = Gruen[1]Rot = Rot[1]ENDIF// Verhindert das Trading an bestimmten WochentagendaysForbiddenEntry = OpenDayOfWeek = 6 OR OpenDayOfWeek = 0tradinghours = OpenTime >= 000000 AND OpenTime <= 240000// Bedingungen zum Einstieg in Long-PositionenIF Gruen AND Rot[1] AND not daysForbiddenEntry AND tradinghours AND Not OnMarket THENBUY 2 CONTRACT AT MARKETENDIF//Bedingungen zum Ausstieg von Long-Positionenif longonmarket and close - tradeprice(1) >= TP AND abs(CountOfPosition) = 2 thenSELL 1 CONTRACT AT MARKETendifIF Rot THENSELL AT MARKETENDIF// Bedingungen zum Einstieg in Short-PositionenIF Rot AND Gruen[1] AND not daysForbiddenEntry AND tradinghours AND Not OnMarket THENSELLSHORT 2 CONTRACT AT MARKETENDIF// Bedingungen zum Ausstieg aus Short-Positionenif shortonmarket and (TRADEPRICE(1) - CLOSE) >= TP AND abs(CountOfPosition) = 2 thenEXITSHORT 1 CONTRACT AT MARKETIF gruen THENEXITSHORT AT MARKETENDIFENDIF1 user thanked author for this post.
01/17/2023 at 5:13 PM #207576Super, danke dafür, sieht schon besser aus!
Wenn ich teste wird eine Position mit 2 Short Kontrakten eröffnet, 1 Kontrakt wird verkauft, der 2te jedoch nie. Es werden auch keine weiteren Trades eröffnet.
Fehler gefunden, das letzte endif war falsch gesetzt
1 user thanked author for this post.
-
AuthorPosts
Find exclusive trading pro-tools on