TrendDecoder Screener customization
Forums › ProRealTime English forum › General trading discussions › TrendDecoder Screener customization
- This topic has 8 replies, 5 voices, and was last updated 2 years ago by Meta Signals Pro.
-
-
03/01/2022 at 8:32 PM #189155
Hi there,
I like this indicator and screener but I am looking for a special set-up on several timeframes:
I would like to combine the screeners so that I have the same configuration of the price crossing down/up the RealTime Tradeline on 5MN, 15MN and 1Hour as shown in the picture;
Anybody sees how to do that?
Thanks in advance ^^
This is the code : sorry but I cannot find the insert code button
//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// change below with the desired signal type you want to detect with TrendDECODER:
signalType = 3// adjust below the size and the liquidity of the assets you want to trade
minPrice = close > 5
minVol = volume > 1000// ===============================================
data = CALL “TrendDecoder_datas”(close)
test = data=signalTypescreener[test and minPrice and minVol](data as “signal type”)
03/02/2022 at 5:14 PM #189205Try this one (not tested):
12345678910111213141516171819202122232425262728293031//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// change below with the desired signal type you want to detect with TrendDECODER:Timeframe(default) //5 minutessignalType = 3// adjust below the size and the liquidity of the assets you want to trademinPrice = close > 5minVol = volume > 1000// ===============================================data1 = CALL "TrendDecoder_datas"(close)test1 = data1=signalType//Timeframe(15 Minute)// ===============================================data2 = CALL "TrendDecoder_datas"(close)test2 = data2=signalType//Timeframe(1h)// ===============================================data3 = CALL "TrendDecoder_datas"(close)test3 = data3=signalType//Timeframe(default)test = test1 AND test2 AND test3screener[test and minPrice and minVol](data1 as "signal type")2 users thanked author for this post.
03/02/2022 at 6:41 PM #18920803/03/2022 at 11:01 AM #189231combine the screeners so that I have the same configuration of the price crossing down/up the RealTime Tradeline on 5MN, 15MN and 1Hour as shown in the picture;
—————————–
Thanks for your initiative; this is surely a very interesting set up to maximize the probability of success;
I will post here a few set ups that can help the community;
I would like to open a thread on Prorealcode where people can share their successful trades or less succesful ones (trading is about stats right 😉 and their strategies with TrendDecoder.
is there any problem to do this on PRC ?
Thanks
03/03/2022 at 11:18 AM #189232No worries 😉 I will subscribe to the thread!
1 user thanked author for this post.
03/03/2022 at 11:26 AM #189233Whooooo I am honored 😉
Thanks Nicolas
03/03/2022 at 12:28 PM #18923510/17/2022 at 8:57 PM #202737Hi 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 licence10/17/2022 at 9:43 PM #202744ERRATUM : on this post https://www.prorealcode.com/topic/backtests-timeframe-multiple-avec-trenddecoder/page/3/#post-202742
You also have this post on Prorealcode that may help:
https://www.prorealcode.com/topic/backtests-timeframe-multiple-avec-trenddecoder/page/3/#post-195604″ -
AuthorPosts
Find exclusive trading pro-tools on