Code Amibroker Indicators

Volume Based Intraday Trading Strategy for Amibroker (AFL)

Volume based intraday trading strategy, suitable for algo traders. Buy and Sell conditions are based on previous day Volume. Trigger price, start Time, end time, stop loss and target has been added. ///Volume Based Intraday AFl for algo traders ///Created…

January 4, 2019 by admin
Code Amibroker Indicators

Candle Strength Indicator for Amibroker (AFL)

This indicator allows you to visualize the strength of the current candlestick by comparing the OHLC values. Red histogram values represent bearish candlesticks whereas green histogram values represent bullish candlesticks. value = 100*(Open-Low)/(High-Low)-50; bullishCandleStrength = IIf(Close > Open, value, 0); bearishCandleStrength =…

January 4, 2019 by admin
Code Amibroker Indicators

Intraday Swing Trading Strategy For Robo Traders for Amibroker (AFL)

Best Intraday Swing Trading strategy For Robo Traders,Back testable, Compatible with any robo Software (Buy Sell Short Cover) clearly mentioned. Swing Calculated using high and low of min 9bars .Stoploss with Initial and trailing Has been Added. _SECTION_BEGIN(“Best Intraday Strategy”);…

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

Supply and Demand Zone for Amibroker (AFL)

This indicator can find the Supply and Demand zone to make decide entry or exit positions. Work fine with weekly & monthly chart. A supply zone on a chart is an area where selling interest outnumbers buying interest and the…

January 4, 2019 by admin
Code Amibroker Indicators

Plot Previous Days High & Low for Amibroker (AFL)

This code allows you to plot the previous days high and low price on an intraday chart. It also has exploration code to find stocks where the current price is greater than the previous days high or where the current…

January 4, 2019 by admin
Code Amibroker Indicators

Plot Foreign Volume for Amibroker (AFL)

This formula allows you to plot the volume for another ticker on the current price chart. _SECTION_BEGIN(“Foreign Volume”); Ticker = ParamStr(“Symbol”, Name()); SetForeign(Ticker, True, True ); Plot( Volume, _DEFAULT_NAME(), IIf( C > O, ParamColor(“Up Color”, colorGreen ), ParamColor(“Down Color”, colorRed…

January 4, 2019 by admin
Code Amibroker Indicators

CCT Stochastic RSI (StochRSI) for Amibroker (AFL)

StochRSI, proposed by Steve Karnish of Cedar Creek Trading, reconfigure classic StochRSI using custom parameters and smoothing. Here is an ambroker implementation of a very adjustable version that I created based on the following: perRsi = Param( “Per RSI”, 21,…

January 4, 2019 by admin
Code Amibroker Indicators

Fibonacci Pivot Points for Amibroker (AFL)

This indicator plots Fibonacci pivots points on an intraday chart. The pivot levels are based on the daily trading range and plotted at 38%, 62% and 99%. You can use the pivot levels to trade reversals or break-outs and fib…

January 4, 2019 by admin