Forums › ProRealTime Deutsch forum › ProOrder Support › Halbe Position verkaufen › Reply To: Halbe Position verkaufen
09/16/2024 at 5:29 PM
#237652
Wenn Sie diese Linie hinzufügen, werden Sie feststellen, dass Trading nicht der Kaufpreis, sondern der letzte Preis eines Betriebs ist. Nach dem Verkauf von halben Verträgen ist dies der Ausgangspreis.
1 |
graphonprice tradeprice |
Der Einstiegspreis muss in eine Variable eingefügt werden und verwenden:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
IF MyLongConditions THEN BUY 2 CONTRACT AT MARKET StopLoss = lowest[3](low) CRV11 = close + (close - StopLoss) Joker = close - ((close - StopLoss)/2) TargetPrice = close + 2*(close - StopLoss) SET STOP PRICE StopLoss SET TARGET PRICE TargetPrice endif IF onMarket and not onMarket[1] then EntryPrice = TradePrice //Geben Sie den Einstiegspreis in die EntryPrice -Variable ein endif if longonmarket and barindex-tradeindex>6 and close<tradeprice and (abs(CountOfPosition) =2) THEN sell abs(CountOfPosition) / 2 contract at market endif If longonmarket and barindex-tradeindex>6 and close>tradeprice then StopLoss = EntryPrice SET STOP PRICE StopLoss endif graphonprice StopLoss coloured("Red") graphonprice TargetPrice coloured("Blue") |