Hello,
I am new on amibroker and programming. I in need to a formula AFL that can scan a watchlist with this columns:
- number on ranking;
- name of the stock ticket;
- price variation of the last 26 weeks as a percentage;
- average volume;
- last price of close;
- Relative Strength - RS.
Until now, I get this code:
rs = RelStrength( "IBOV");
Filter = True;
AddColumn(C,"Close",1.2);
AddColumn(rs, "Relative Strength vs. Bovespa");
AddColumn(OpenInt,"OpenInt",1.2);
AddColumn(V,"Volume",1.2);
AddColumn(ROC(C,1),"% Price change",1.2);
AddColumn(ROC(OpenInt,1),"% OpenInt change",1.2);
AddColumn(ROC(V,1),"% Volume change",1.2);
_SECTION_END();
But it's still a long way from what I need.
Since now, thank you for every help.