Trade in einem Zeitfenster starten
Forums › ProRealTime Deutsch forum › ProOrder Support › Trade in einem Zeitfenster starten
- This topic has 15 replies, 4 voices, and was last updated 1 year ago by axmichi.
-
-
11/11/2023 at 2:50 PM #223537
Hallo Ihr Lieben.
Ich möchte einen Handel in eimem Zeitfenster starten, sagen wir der Handel soll zwischen Montag 15.30 Uhr und Dienstag 19.00 Uhr starten.
Ich möchte dabei Kaufen wenn der Kurs vom Close am Montag um 15.30 Uhr um 1% gefallen ist.
Ich habe es jetzt so, aber er macht es nicht……
Kann jemand helfen?
123456789101112131415defparam cumulateorders = falseif opendayofweek = 1 and time = 153000 thenKauf = close - close/100*1endiftimec1 = opendayofweek >= 1 and time >= 153000timec2 = opendayofweek <= 2 and time <= 193000If time >= timec1 and time <= timec2 thenbuy at Kauf limitendifset stop %loss 1set target %profit 111/11/2023 at 6:38 PM #223547Die Bedingungen für die Eröffnung einer Position müssen geändert werden:
123456789101112131415defparam cumulateorders = falseif opendayofweek = 1 and time = 153000 thenKauf = close - close/100*1endiftimec1 = (opendayofweek = 1 and time >= 153000) or (opendayofweek > 1)timec2 = (opendayofweek < 2) or (opendayofweek = 2 and time <= 193000)If timec1 and timec2 thenbuy at Kauf limitendifset stop %loss 1set target %profit 11 user thanked author for this post.
11/11/2023 at 11:56 PM #22355911/12/2023 at 9:28 AM #22357211/12/2023 at 9:43 AM #223573Hallo Roberto
ganz großen Dank!!
Nun gehts weiter. Das System verlangt einen weiteren Punkt.
Sollte der Kurs seit Montag 15.30 Uhr um 1,5% gefallen sein, soll der TakeProfit auf Einstand gesetzt werden
Ich habe hier von dir in den Foren das gefunden, vgl
https://www.prorealcode.com/topic/dax-breakout-need-some-assistance-please/
und dort genauer dann das hier
123if (longOnMarket and (close - tradePrice) >= 15 * pointSize) OR (shortOnMarket and (tradePrice - close) >= 15 * pointSize) thenset Stop Breakevenendifund es so umfunktioniert…. doch es klappt nicht
Kannst du bitte noch mal helfen?123456789101112131415161718defparam cumulateorders = falseif opendayofweek = 1 and time = 153000 thenKauf = close - close/100*1AnpassungTP = close - close/100*1.5endiftimec1 = (opendayofweek = 1 and time >= 153000) or (opendayofweek > 1)timec2 = (opendayofweek < 2) or (opendayofweek = 2 and time <= 210000)If timec1 and timec2 thenbuy at Kauf limitset target %profit 1endifif longOnMarket and (close - tradePrice) =< AnpassungTP thenset Stop Breakevenendif11/12/2023 at 1:01 PM #22358511/12/2023 at 3:10 PM #22360011/12/2023 at 3:25 PM #22360111/12/2023 at 3:51 PM #223602Ja, das klappt.
Ich habe noch den TimeStop Freitag abend nach Vorgabe der Quelle und einen SL ein bisschen nach Drawdown (geringster) optimiert hinzugefügt.
Der Code sieht so aus.123456789101112131415161718192021222324defparam cumulateorders = falseIf opendayofweek = 1 and time = 153000 thenKauf = close - close/100*1AnpassungTP = close - close/100*1.5Endiftimec1 = (opendayofweek = 1 and time >= 153000) or (opendayofweek > 1)timec2 = (opendayofweek < 2) or (opendayofweek = 2 and time <= 210000)If timec1 and timec2 thenbuy at Kauf limitset target %profit 1EndifIf longOnMarket and (close - tradePrice) =< AnpassungTP thenset target profit KaufEndifIf longonmarket and opendayofweek = 5 and time = 220000 thensell at marketEndifset stop %loss 4Damit hätten wir ein fertiges System im 30 Minuten Chart.
Hinzgefügt werden müßte die Quelle der Idee (soweit ich es verfolgen konnte) .. Dion Kurczek – dem Gründer von Wealth-Lab.com, veröffentlich in der Zeitschrift “Traders” Ausgabe 03/2023
Wo ich es gefunden habe .. https://system-check.me/1-prozent-pro-woche/. Handelbar sollen NAS100 und S&P500 sein.Optimiert werden könnte das Zeitfenster des Einstieges, hier willkürlich gewählt, also irgendwo zwischen Montags ab 08.00 Uhr bis Freitag 20.00 Uhr oder auch alle Prozentangaben. Zusätzliche Filter könnten auch etwas bringen.
Wenn gewünscht, ab in die Bibliothek damit…
11/12/2023 at 4:46 PM #22360811/16/2023 at 10:08 AM #22379711/16/2023 at 12:22 PM #223807Hallo noch ne Frage zum System, bei mir kommen da mehrere Orders soll das so sein.
Hier meine Frage zum Code. Es wird leider keine Order ausgelöst??
if dayofweek = 1 and time = 080000 then
myprice=closeendif
if not long onmarket and Dayofweek = 1 and close <= myprise * 0.99 then
buy at 1 limit
11/18/2023 at 11:11 AM #22388611/20/2023 at 3:01 PM #223981Das system kauft ja mit Limit wenn der Kurs tiefer als 1 %, das verstehe ich. Wie muss es aber heißen wenn man jetzt sagen würde. Es soll nachdem das Limit gerissen wurde nicht gleich kauf (am Limit) sondern erst wenn der Kurs es wieder über das Limit geschafft hat und dort eine Kerze macht, bei der der Close größer ist als das Open?
Also der Kurs sticht nur kurz, oder schließt unter der 1 % Schwelle und schafft es dann aber irgendwann wieder rüber und schließt mit einer Gewinnkerze? dann Einstieg
Weißt Du wie das im Code heißen muss??
LG
11/20/2023 at 4:11 PM #223985 -
AuthorPosts
Find exclusive trading pro-tools on