RafaParticipant
Senior
Dear all,
As I have been saying, I have just started with the coding. I would like to have your help to solve this problem. The next code is not working and I don´t know why.
The initial idea is: Chikou Span crosses the price of n periods (named PeriodoMedio).
Chikou = Close
// ===== Estrategia =====
CruceLargo = Chikou CROSSES UNDER Close[PeriodoMedio]
CruceCorto = Chikou CROSSES OVER Close[PeriodoMedio]
// ===== SCREENER =====
SCREENER (CruceLargo OR CruceCorto)
Topic moved to english section, title reformulated, code added in syntax highlight! You gave me lot of work @rafa 🙂 Please try to respect some kind of organisation please 😉
Conditions to be tested by the SCREENER function must be in brackets, not parenthesis:
SCREENER [CruceLargo OR CruceCorto]
RafaParticipant
Senior
I am sorry to give you so much job. What do you mean by organiasation?
I translated into spanish too but seems I didn´t copy correctly.
Once again I am very sorry
I was meaning “arrangement”. Don’t worry I was kidding of course 😀
Does your screener works better now?
RafaParticipant
Senior
hehe Too difficult to get the jokes here… 😉
Yes works perfect!!!! Thanks a lot.
I wish we could have some Videos in Spanish to learn. But little by little..
Bonjour Nicolas,
j’ai traduit le code anglis vs espagnol mais il ne fonctionne pas : il me demande de défnir les variables Middle et Medim.
Merci pour ton aide 😉
Chikou = Close
// ===== Strategy =====
LongCross = Chikou CROSSES UNDER Close [MiddlePeriod]
ShortCross = Chikou CROSSES OVER Close [MediumPeriod]
// ===== SCREENER =====
SCREENER [LongCross OR ShortCross]