codice stop / profit di giornata
Forums › ProRealTime forum Italiano › Supporto ProOrder › codice stop / profit di giornata
- This topic has 11 replies, 3 voices, and was last updated 7 months ago by Francesco Rossi.
-
-
03/22/2024 at 10:39 AM #230258
Buongiorno,
avrei bisogno di capire come inserire il comando di stop profit daily e stop loss daily .
es : al raggiungimento di 50 punti in target profit ,non verranno eseguite ulteriori operazioni fino al giorno dopo
analogamente per lo stop loss daily di 50 punti ,il sistema si ferma e riprende il giorno successivo.
grazie
03/22/2024 at 11:28 AM #230270vuoi una sola operazione al giorno o puoi avere più ingressi, se la condizione di ingresso si verifica più volte, e chiusura allo SL/TP?
03/22/2024 at 11:30 AM #230271una sola operazione al giorno, a prescindere che sia in stop loss o stop profit .
03/22/2024 at 11:35 AM #23027203/22/2024 at 11:49 AM #230273non è molto chiaro quanto di quello riportato qui sotto, devo inserire nel mio codice.
cos’è tally?
once maxTrades = 3 //maxNumberDailyTrades
once tally = 0
if intradayBarIndex = 0 then
tally = 0
endif
newTrades = (onMarket and not onMarket[1]) or ((not onMarket and not onMarket[1]) and (strategyProfit <> strategyProfit[1])) or (longOnMarket and ShortOnMarket[1]) or (longOnMarket[1] and shortOnMarket) or ((tradeIndex(1) = tradeIndex(2)) and (barIndex = tradeIndex(1)) and (barIndex > 0) and (strategyProfit = strategyProfit[1]))
if newTrades then
tally = tally +1
endif
03/22/2024 at 2:41 PM #230276Aggiungi queste righe prime delle entrate:
12345678IF IntraDayBarIndex = 0 THENProfitto = StrategyProfitENDIFGuadagnoOdierno = (StrategyProfit - Profitto) / PipValueOTD = ((Barindex - TradeIndex(2)) > IntradayBarIndex)IF GuadagnoOdierno < 50*PipSize THENOTD = 0ENDIFaggiungi poi questa ulteriore condizione alle tue condizioni:
1AND Not OTD03/28/2024 at 9:40 AM #230630in base a questo sistema ,puo’ dirmi cortesemente dove devo inserire esattemente le stringhe di codice che mi ha indicato . grazie
DEFPARAM FLATBEFORE = 090000
// Cancellare tutti gli ordini in attesa e chiudere tutte le posizioni all’orario “Flat After”
DEFPARAM FLATAFTER = 123000daysForbiddenEntry = OpenDayOfWeek = 6 OR OpenDayOfWeek = 0
ONCE trend = 1 // 1=UP, -1=DOWN
ONCE StartLevel = 18495
ONCE Box = 5*pipsize
if not onmarket then
IF Trend = 1 THEN //UP
IF close <= (StartLevel – Box) THEN
SELLSHORT 0.5 CONTRACT AT MARKET
ENDIF
ELSIF Trend = -1 THEN //DOWN
IF close >= (StartLevel + Box) THEN
BUY 0.5 CONTRACT AT MARKET
ENDIF
ENDIF
ENDIF
// trailing start
IF Trend = -1 THEN
IF close <= (StartLevel – 5*PipSize) THEN
StartLevel = StartLevel – 5*PipSize
ENDIF
ELSIF Trend = 1 THEN
IF close >= (StartLevel + 5*PipSize) THEN
StartLevel = StartLevel + 5*PipSize
ENDIF
ENDIF
// Stop e target
SET STOP pLOSS 5
SET TARGET pPROFIT 5
//03/28/2024 at 9:51 AM #2306312345678IF IntraDayBarIndex = 0 THENProfitto = StrategyProfitENDIFGuadagnoOdierno = (StrategyProfit – Profitto) / PipValueOTD = ((Barindex – TradeIndex(2)) > IntradayBarIndex)IF GuadagnoOdierno < 50*PipSize THENOTD = 0ENDIFcredo sia stata mal interpretata la mia richiesta.
La mia necessità era quella di interrompere la strategia DOPO LA PRIMA OPERAZIONE effettuata, qualunque ne sia l’esito positivo o negativo .
Quindi mi fermo dopo la 1° operazione, sempre.
03/28/2024 at 3:07 PM #230660Quindi non deve fare più di un’operazione giornaliera, comunque vada:
12345678910111213141516171819202122232425262728293031323334DEFPARAM CumulateOrders = FalseDEFPARAM FLATBEFORE = 090000// Cancellare tutti gli ordini in attesa e chiudere tutte le posizioni all’orario "Flat After"DEFPARAM FLATAFTER = 123000OTD = ((Barindex - TradeIndex(2)) > IntradayBarIndex)daysForbiddenEntry = OpenDayOfWeek = 6 OR OpenDayOfWeek = 0ONCE trend = 1 // 1=UP, -1=DOWNONCE StartLevel = 18495ONCE Box = 5*pipsizeif not onmarket AND OTD thenIF Trend = 1 THEN //UPIF close <= (StartLevel - Box) THENSELLSHORT 0.5 CONTRACT AT MARKETENDIFELSIF Trend = -1 THEN //DOWNIF close >= (StartLevel + Box) THENBUY 0.5 CONTRACT AT MARKETENDIFENDIFENDIF// trailing startIF Trend = -1 THENIF close <= (StartLevel - 5*PipSize) THENStartLevel = StartLevel - 5*PipSizeENDIFELSIF Trend = 1 THENIF close >= (StartLevel + 5*PipSize) THENStartLevel = StartLevel + 5*PipSizeENDIFENDIF// Stop e targetSET STOP pLOSS 5SET TARGET pPROFIT 5//04/02/2024 at 2:42 PM #230907Buongiorno,
ho provato il funzionamento della strategia con il codice riportato sopre , ma purtroppo il sistema non parte e non esegue neanche un’operazione.
sa cortesemente dirmi il perchè?
04/02/2024 at 2:45 PM #230908al contrario questo codice esegue perfettamente ingresso e trailing start, ma non si ferma ad una solo trade al giorno (1 ingresso e 1 uscita, a prescindere che sia positiva o negativa)
può aiutarmi cortesemente?
04/02/2024 at 2:46 PM #230909EFPARAM FLATBEFORE = 090000
// Cancellare tutti gli ordini in attesa e chiudere tutte le posizioni all’orario “Flat After”
DEFPARAM FLATAFTER = 123000
// MaxTrades yearly, daily, weekly, monthly
////daysForbiddenEntry = OpenDayOfWeek = 6 OR OpenDayOfWeek = 0
ONCE trend = 1 // 1=UP, -1=DOWN
ONCE StartLevel = 18485
ONCE Box = 5*pipsize
Once MaxTrades = 1 //max 1 trade allowed
Once TradeOn = 1
Once TradeCount = 0
If TradeCount = MaxTrades then
TradeOn = 0
endif
if not onmarket then
IF Trend = 1 THEN //UP
IF close <= (StartLevel – Box) THEN
SELLSHORT 0.5 CONTRACT AT MARKET
ENDIF
ELSIF Trend = -1 THEN //DOWN
IF close >= (StartLevel + Box) THEN
BUY 0.5 CONTRACT AT MARKET
ENDIF
ENDIF
ENDIF
// trailing start
IF Trend = -1 THEN
IF close <= (StartLevel – 5*PipSize) THEN
StartLevel = StartLevel – 5*PipSize
ENDIF
ELSIF Trend = 1 THEN
IF close >= (StartLevel + 5*PipSize) THEN
StartLevel = StartLevel + 5*PipSize
ENDIF
ENDIF
// Stop e target
SET STOP pLOSS 5
SET TARGET pPROFIT 5
// -
AuthorPosts
Find exclusive trading pro-tools on