Hi there, long time not been here…
It seems thats PRT has improved a lot.
Q: Is it possible to have a screener that picks up a instrument A’s signal to show an arrow on an instrument B ?
Ex : Dow /crosses over 30 = Arrowup on the Dax..
Thank you for your help as usual 😉
For the record, ProScreener cannot plot anything on the graph, on the other hand for your screener which tests one instrument to report another, we can like this:
- create a personal list which includes the instrument (s) that will be transferred to the list of ProScreener results
- modify condition "c" of the code below which will test it on the instrument declared in EQUITYFRAME (here the Dow 1 € at PRT Sponsored, to be modified if necessary)
- run the screener on this list
- if the condition "c" is met then the instruments contained in your personal list will be displayed (in the attached image, I created a list with the DAX only)
EQUITYFRAME("Indices - GBL EUR","Wall Street Cash(1€)")
c = close>100 //mettre le test voulu dans cette variable
equityframe(default)
test = c
Screener [test](c)
Thank you Nicolas for your swift answer and great help !
Take care.
Hello Nicolas and the Team!
Help please…
I would like the conditions C1 + EquityFrame + c3 being met.
My issue is to right properly from equityframe to test C…
(the idea is to have the DOW “close>close[1] as well as C1 and C3)
Does this make sens?
Thank you in advance.
// Variable
MyMACD5mn = MACD[12,26,9](close)
/// UT1
TIMEFRAME(5 minutes)
c1 = (MyMACD5mn CROSSES OVER 0)
EQUITYFRAME("Indices - GBL EUR","Wall Street Cash(1€)")
c = close>close [1] //mettre le test voulu dans cette variable
equityframe(default)
test = c
//UT2
TIMEFRAME(15 minutes)
c3 = (close > close[1])
//Default
TIMEFRAME(DEFAULT)
SCREENER[(c1 AND c3)] (Variation AS "%Chg prev bar")
Hi all, just figured out your system Nicoals. Thank you and yes, I like it.
However, the signal on “THE” instrument (ex: DOW) will pull up the list, but all the instruments in this same list are not all the good candidates for the trade.
I would love at this point a second stage of filter that will select the instrument that shows the signal…(ex: Dow pulls up the Dax that just shows a RSI over 70…)
Q: Is this feasable ?
Cheers guys !
Yes this is feasible and I’m sure you will find many relevant codes about how to detect when RSI crosses over a 70 values in the forums.