Tradingbasis - Tools For Amibroker Official
A: Absolutely. Tradingbasis provides open AFL code (unless protected). You can customize freely.
If you are serious about automating your trading with Amibroker but don’t want to get stuck in coding hell, Tradingbasis is worth every penny. Start with their free trial (if available) or the basic scanner pack. Then scale up as your trading system evolves. Frequently Asked Questions Q: Do Tradingbasis tools work with Amibroker 6.x and above? A: Yes, all tools are regularly updated for latest Amibroker versions. Tradingbasis - Tools for Amibroker
A: Yes. Tradingbasis tools work with any data source (Google, Yahoo, IQFeed, Global Data Feeds, etc.). A: Absolutely
// Tradingbasis - Breakout Scanner Period = Param("Period", 20, 5, 50, 1); HighLevel = HHV(High, Period); Breakout = Cross(Close, Ref(HighLevel, -1)); VolumeSpike = Volume > MA(Volume, 50) * 1.5; Signal = Breakout AND VolumeSpike; Filter = Signal; AddColumn(C, "Price", 1.2); AddColumn(V, "Volume", 1.0); AddColumn(RSI(14), "RSI", 1.2); If you are serious about automating your trading