I have a small AFL code to scan BUY signals.
Buy=Cross(MA(C, 20), MA(C,50));
Sell=Cross(MA(C, 50), MA(C,20));
Buy = ExRem(Buy,Sell);
I want to do Auto Analysis to find Buy signals in 1 hour chart.
How do I tell AmiBroker to scan on 1 hour interval chart ?
Here is the scan settings....What changes I may require here ?
Buy=Cross(MA(C, 20), MA(C,50));
Sell=Cross(MA(C, 50), MA(C,20));
Buy = ExRem(Buy,Sell);
I want to do Auto Analysis to find Buy signals in 1 hour chart.
How do I tell AmiBroker to scan on 1 hour interval chart ?
Here is the scan settings....What changes I may require here ?