Code Amibroker Indicators

Dynamic RSI for Amibroker (AFL)

A nice, smoothed RSI that adapts dynamically to price levels. I use it to spot divergence setups faster than regular RSI. _SECTION_BEGIN(\”Dynamic RSI\”); DZbuy = Param(\”Buy Zone Probability\”,0.1,0.1,0.5,0.1); DZsell = Param(\”Sell Zone Probability\”,0.1,0.1,0.5,0.1); Period = Param(\”Period\”, 14, 2, 30, 1); Lb = Param(\”LookBack…

by admin