Code Amibroker Indicators

The Real Jurik Moving Average (JMA)

I don’t remember where I got this formula but if I am not mistaken it was translated from MT4 to Amibroker by a German programmer. I’ve tested with original JMA, and the results are the same/accurate (if I’m not mistaken) but…

December 28, 2018 by admin
Code Amibroker Indicators

Klinger Oscillator Indicator

The Klinger Oscillator is used to determine long-term trends of money flow, while remaining sensitive enough to short-term fluctuations to predict short-term reversals. It compares the volume of money flowing in and out of a stock to the price movement,…

December 28, 2018 by admin
Code Amibroker Indicators

Intraday Reversal Breakout Order (RBO) Trading System

This is a 5 minute reversal breakout order (RBO) trading system indicator for intraday trading only. I took the basic code from the net but have added many other parameters to make it more user friendly. -you can change entry…

December 28, 2018 by admin
Code Amibroker Indicators

Multiple Commodity Channel Index (CCI) In Same Pane

CCI is a versatile momentum oscillator that can be used to identify overbought/oversold levels or trend reversals. The indicator becomes overbought or oversold when it reaches a relative extreme. This indicator will allow you to display up to 3 CCI indicators with different…

December 28, 2018 by admin
Mở Tài Khoản - Nhận ngay bộ công cụ AI trị giá 56000 USD
Code Amibroker Indicators

Pin Bar Candlestick Pattern Detector

A pin bar pattern consists of one price bar, typically a candlestick price bar, which represents a sharp reversal and rejection of price. The pin bar reversal as it is sometimes called, is defined by a long tail, the tail…

December 28, 2018 by admin
Code Amibroker Indicators

Bull vs Bear

Bull power vs Bear power – Histogram _SECTION_BEGIN(“Bull vs Bear”);periods = Param( “Periods”, 5, 3, 200, 1 );Bull = (H – O)*100/C;Bear = (L – O)*100/C;val = Bull + Bear; x = EMA(val,periods);Plot(x,””, colorOrange);dynamic_color = IIf( x> 0, colorGreen, colorRed…

December 28, 2018 by admin
Code Amibroker Indicators

RSI Candle (Colored)

Candle-color changes as per RSI value. If candle color is red then RSI is in bear zone and if candle color is green the RSI is in bull zone. Neutral Zone – RSI in between 45 and 55 (RSI Period can be changed from chart-property-settings) _SECTION_BEGIN(“RSI Candle”); Period =…

December 28, 2018 by admin
Code Amibroker Indicators

Relative Momentum Index

The Relative Momentum Index (RMI) was developed by Roger Altman in 1993 as an attempt to improve the Relative Strength Index (RSI) by adding a component of momentum to the RSI. The Relative Momentum Index uses change of closing price between…

December 28, 2018 by admin
Code Amibroker Indicators

The Stochastic Oscillator for Amibroker

Stochastic is an oscillator that measures the position of a stock OR security compared with its recent trading range indicating overbought OR oversold conditions.It displays current Day price at a percentage relative to the security’s trading range (High/Low) over the…

December 28, 2018 by admin
Code Amibroker Indicators

Vertical Horizontal Filter For Removing False Signals From Trading System

The VHF indicator measure wether the price is going horizontal (non-directional) or vertical (uni-directional), no indicator in technical analysis has this capacity. SetBarsRequired(sbrAll,sbrAll); VHFP = Param( “VHFPERIOD”, 20, 2, 100, 1 ); HCP = HHV( C, VHFP ); LCP = LLV( C,…

December 28, 2018 by admin