Trading system SAR 23
Forums › ProRealTime forum Italiano › Supporto ProOrder › Trading system SAR 23
- This topic has 11 replies, 5 voices, and was last updated 3 years ago by Gael.
Tagged: t
-
-
04/07/2021 at 4:13 PM #166423
Salve,
volevo chiedervi la realizzazione di queste due idee in trading system:
1)
- Buy alla comparsa di un segnale SAR sotto le candele
- Sell alla comparsa di un segnale SAR sopra le candele
- Trailling stop sul segnale SAR, e va a spostarsi alla comparsa del nuovo segnale.
2)
Il secondo trading system è simile al primo, solo che chiude il sistema al raggiungimento del 12 segnale SAR consecutivo. Nel caso i segnali SAR dovessero essere inferiori a 12, il sistema chiude al segnale SAR inverso.
Grazie mille in anticipo
04/08/2021 at 9:07 AM #1664691 / questo sistema è molto semplice da creare con la creazione assistita, hai provato prima? Ad ogni modo, ecco qualcosa con cui puoi giocare:
123456789101112131415161718192021defparam cumulateorders=falseisar = SAR[0.02,0.02,0.2]if not longonmarket and close crosses over isar thenbuy at marketsell at isar stopendifif not shortonmarket and close crosses under isar thensellshort at marketexitshort at isar stopendifif longonmarket thensell at isar stopendifif shortonmarket thenexitshort at isar stopendif04/08/2021 at 9:15 AM #1664722 / quel sistema taglia gli ordini quando ISAR è 12 volte consecutive dello stesso colore:
123456789101112131415161718192021defparam cumulateorders=falseisar = SAR[0.02,0.02,0.2]if not longonmarket and close crosses over isar thenbuy at marketendifif not shortonmarket and close crosses under isar thensellshort at marketendifbcount = summation[12](close>isar)=12if bcount and longonmarket thensell at marketendifscount = summation[12](close<isar)=12if scount and shortonmarket thenexitshort at marketendif04/08/2021 at 9:37 AM #16647804/08/2021 at 9:38 AM #16647904/08/2021 at 10:05 AM #16648404/08/2021 at 11:12 AM #16650604/08/2021 at 11:19 AM #16650804/08/2021 at 1:14 PM #16652504/08/2021 at 2:09 PM #166548Ciao Gael
Visto che sei alle prime armi per aiutarti ti ho creato delle piccole aggiunte che ti verranno utili con il proseguo della tua esperienza che farai nella programmazione.
Ti ho aggiunto Target dinamico (con Atr ) e stop loss in percentuale e numero massimo di barre (oltre il sistema esce dalla posizione).
Il tutto è stato distinto se sono operazioni Long o Short.
Ciao
Buona Fortuna
123456789101112131415161718192021222324252627282930313233343536373839defparam cumulateorders=falseisarlong = SAR[0.04,0.04,0.6]isarShort = SAR[0.07,0.07,0.1]if not longonmarket and close crosses over isarlong thenbuy at marketsell at isarlong stopset target profit 10* averagetruerange[5](close)set Stop %loss 1.8endifif longonmarket thensell at isarlong stopendifif not shortonmarket and close crosses under isarshort thensellshort at marketexitshort at isarshort stopset target profit 8* averagetruerange[12](close)set Stop %loss 1.2endifif shortonmarket thenexitshort at isarshort stopendif// NUMERO BARRE OTTIMALIONCE maxCandlesLongWithProfit = 17 // profitto longONCE maxCandlesShortWithProfit = 10 // profitto shortONCE maxCandlesLongWithoutProfit = 12 // Limite longONCE maxCandlesShortWithoutProfit = 9 // Limite shortposProfit = (((close - positionprice) * pointvalue) * countofposition) / pipsizenumberCandles = (BarIndex - TradeIndex)m1 = posProfit > 0 AND numberCandles >= maxCandlesLongWithProfitm2 = posProfit > 0 AND numberCandles >= maxCandlesShortWithProfitm3 = posProfit < 0 AND numberCandles >= maxCandlesLongWithoutProfitm4 = posProfit < 0 AND numberCandles >= maxCandlesShortWithoutProfitIF LONGONMARKET AND (m1 OR m3) THENSELL AT MARKETENDIFIF SHORTONMARKET AND (m2 OR m4) THENEXITSHORT AT MARKETENDIF2 users thanked author for this post.
04/08/2021 at 2:10 PM #166551Questi sono i risultati con Dax 2 ore
04/28/2021 at 9:10 PM #168317 -
AuthorPosts
Find exclusive trading pro-tools on