screener trend decoder
Forums › ProRealTime forum Français › Support ProScreener › screener trend decoder
- This topic has 5 replies, 2 voices, and was last updated 9 hours ago by Iván.
-
-
11/05/2024 at 10:16 PM #240009
Bonjour a tous,
je possède l’indicateur trend decoder qui me convient parfaitement.
je voudrez si possible un petit coups de main pour crée un screener selon les différentes configuration pour cette indicateur, mais je n’est aucune compétence en codage.
si quelqu’un a ca en réserve avec les explications je suis preneur.
Merci d’avance a tous.
11/06/2024 at 9:21 AM #24001911/06/2024 at 9:55 AM #240023Merci pour ton aide Ivan. voici un des code de l’indicateur disponible sur le forum.
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556// Screener TrendDECODER// Signal 1 : TrendUP H1// Signal 2 : TrendUP M15 and GreyBox in an M15 UpTrend//signalType details:// 1 = new bullish trend detected (from red to blue cloud)// -1 = new bearish trend detected (from blue to red cloud)// 2 = grey box during bullish trend// -2 = grey box during bearish trend// 3 = red trend line breakout// -3 = blue trend line breakout// adjust below the size and the liquidity of the assets you want to trademinPrice = close > 5minVol = summation[10](volume) > 2000// ===============================================timeframe (1H)data1, ignored, ignored, TrendLine1 = CALL “TrendDecoder_datas”(close)if data1 = 1 and data1[1]=0 thentrend1=1endifif data1 = -1 thentrend1=0endiftestH1 = trend1 and Close > TrendLine1// ===============================================timeframe (15 minutes)data2, ignored, ignored, TrendLine2 = CALL “TrendDecoder_datas”(close)if data2 = 1 and data2[1]=0 thentrend2=1endifif data2 = -1 thentrend2=0endiftestM15 = trend2 and Close > TrendLine2// ===============================================timeframe (5 minutes)data3, ignored, ignored, TrendLine3 = CALL “TrendDecoder_datas”(close)if data3 = 1 and data3[1]=0 thentrend3=1endifif data3 = -1 thentrend3=0endiftestM5 = trend3 and Close > TrendLine3// ===============================================Timeframe (default)// M1ignored, ignored, ignored, TrendLine4 = CALL “TrendDecoder_datas”(close)testM1 = Close < TrendLine4screener[testM1 and testM5 and testM15 and testH1 and minPrice and minVol]Modifié par le modérateur en saisissant le code à l’aide du bouton « Ajouter un code d’outillage ». Pensez à faire de même dans vos prochains messages.
je te joint également le message de la mise a jour du concepteur:
Hi TrendDECODERS,
After many requests, we have updated our backtest function.
You now have the possibility to include Trailing Stop Loss values to make your exits thanks to the “TrailLong” and “TrailShort” variables which correspond respectively to the boundaries of the Blue and Orange Clouds;
TrailLong is the farthest edge of the price and TrailShort the closest;Signals, TrailLong, TrailShort = CALL “TrendDecoder_datas”(close)
The 6 values of the “Signals” variable are as follows:
// 1 = new UP trend detected (from red cloud to blue cloud)
// -1 = new DOWN trend detected (from blue cloud to red cloud)
// 2 = GreyBOX during the uptrend
// -2 = GreyBOX during a downtrend
// 3 = break out of the red Realtime trendline
// -3 = break out of the blue Realtime trendlineYou also have this post on Prorealcode that may help:
https://www.prorealcode.com/topic/backtests-timeframe-multiple-avec-trenddecoder/page/2/#post-195391=> Of course, you’ll have to replace the “TrendDecoder_datas” function in the code with the one above because we’ve enhanced it 😉
Timeframe (15mn, updateonclose)Signal15 = CALL “TrendDecoder_datas”(close) => Signals15, TrailLong15, TrailShort15=CALL “TrendDecoder_datas”(close)NB: the function CALL “TrendDecoder_datas”(close) is a free bonus given on reques to TrendDECODER customers with identified licenceje voudrais pouvoir le configurer de façon a détecter M15 en trend haussier et M5 en signal UP.
et inversement pour la tendence baissière.
encore un grand merci Ivan.
11/06/2024 at 3:19 PM #24002911/06/2024 at 3:23 PM #240031Oui il s’agit d’un indicateur payant.
se toute façon on ne peux l’utiliser sans la licence. Donc sa ne gêne en rien car en plus tout cela est déjà sur le forum.
Je passe par là car le concepteur ne me répond pas à mes messages d’aide 🤷♂️.11/06/2024 at 5:11 PM #240034 -
AuthorPosts
Find exclusive trading pro-tools on