ed65Participant
Average
Hi , is there anyone here who can help to convert scans from tc2000 code to Prt code for example
(c-o>=.90 and v>100000 and c1-o1<c-o and c1/c2<=1.02) or (c/c1>=1.04 and v>v1 and v>=100000
and c1/c2<=1.02) and c>=3 and (c-l)/(h-l)>=.7
i want it to be a screener in realtime
thanks in advance
eddie
JSParticipant
Veteran
Signal = 0
If (Close - Open) >= 0.9 and Volume > 100000 and (Close[1] - Open[1]) < (Close - Open) and (Close[1] / Close[2]) <= 1.02 or (Close / Close[1]) >= 1.04 and Volume > Volume[1] and Volume >= 100000 and Close[1] / Close[2] <= 1.02 and Close >= 3 and (Close - Low) / (High - Low) >= 0.7 then
Signal = 1
EndIf
Screener[Signal](Signal as "1 = LONG")
Hi @ed65
Hereby the screener for PRT…
ed65Participant
Average
thank you so much i will test it tomorrow thank you for such a quick reply