Menu
  • Option Hydra
  • Training
  • Premium
  • Courses
  • Library

Marketcalls

Simply Intelligent Technical Analysis and Trading Strategies

  • Software
    • Amibroker
    • NinjaTrader 7
    • Ninjatrader 8
    • Option Action
    • Market Analyst
    • Metatrader
    • Python
    • Datafeed
  • Market Profile
    • Orderflow
  • Markets
  • Commodities
  • Forex
  • Economy
    • Banking
  • Webinars
  • Trading Lessons
    • Algo Trading
    • Infographic
    • Video
You are here: Home / Amibroker / Coral Trend Indicator – Amibroker AFL Code

Coral Trend Indicator – Amibroker AFL Code

December 20, 2015 by Rajandran 11 Comments

Nifty Future EOD charts
Coral Trend Indicator

 

Coral Trend Indicator is yet another trend following indicator inspired from Tradingview Pinescript code. Code is designed to plot in PSAR style. Green color dots represents bullish trend. and the red dots represents bearish trend. Coral trend applied to Nifty EOD charts as shown in the above figure.

Looks like the system is quite popular in MT4 platform among FX traders known as THV Coral. Whatever the code does is just the indication of trend and not a complete system though. Do you home work if you would like to build some system on top of it.

Amibroker AFL Code

Nifty Future 15min Charts
NF 15min

Download Coral Trend Amibroker AFL

Related Readings and Observations

  • How to Estimate the VWAP based settlement Close like a Pro using Amibroker?How to Estimate the VWAP based settlement Close like a Pro using Amibroker? A lot of money could be saved/earned if you are weekly option buyer/option seller out there especially if you trade the last 30minute of the trade when comes to Indian Markets.
  • RSI Momentum Trading Strategy : Do Simple Trading Strategies Really Work? [Part3]RSI Momentum Trading Strategy : Do Simple Trading Strategies Really Work? [Part3] Do simple Trading strategies really work in Indian Markets? It is the curiosity remains among most of the traders. Does a simple technical condition bring consistent returns in the markets […]
  • [Premium] VLintra V5 – Bank Nifty Futures 5min Positional Trading System[Premium] VLintra V5 – Bank Nifty Futures 5min Positional Trading System Vlintra V5 is a trend following system based on VWAP + Linear regression based volatility channel with adaptive parameters based on four different volatile seasons. Vlintra V5 is part of […]
  • Range Identifier – Amibroker AFL CodeRange Identifier – Amibroker AFL Code Here is a simple range identifier Amibroker AFL code which helps you to spot and visualize out higher return event days and high volatile intraday range days to study how a specific […]
  • Long Butterfly Spread – Amibroker AFL codeLong Butterfly Spread – Amibroker AFL code The Long butterfly spread is a neutral strategy that is a combination of a bull spread and a bear spread. It is a limited profit, limited risk options strategy. There are 3 striking prices […]
  • Top 10 Things Retail Traders Should Know Before doing AutotradingTop 10 Things Retail Traders Should Know Before doing Autotrading Autotrading in India is an evolving concept in india. Most of the Retail traders these days looks more passionated towards learning autotrading concepts. But 95% of the retail traders […]

Filed Under: Amibroker Tagged With: Amibroker AFL code, Coral Trend Indicator, THV Coral

About Rajandran

Rajandran is a Full time trader and founder of Marketcalls & Co-Founder of Traderscafe, trades mostly using discretionary Trading Concepts like Market Profile, Trading sentimental analysis, building timing models, algorithmic trading models. Instructs professional traders, full time traders & aspiring full time traders. Rajandran attended college in the Chennai where he earned a BE in Electronics and Communications. Rajandran has a broad understanding of trading softwares like Amibroker, Ninjatrader, Esignal, Metastock, Motivewave, Market Analyst(Optuma),Metatrader,Tradingivew,Python and understands individual needs of traders and investors utilizing a wide range of methodologies.

Comments

  1. CArnot says

    December 22, 2015 at 1:24 pm

    Hi, I found in Ami 5.60.2 that when you zoom in to a chart the red and green dots are shifting. In such a case the indicator is not very reliable. Brgds, CArnot

    Reply
    • Rajandran says

      December 25, 2015 at 2:48 pm

      Hi Download the updated Code for Coral which resolves the Repainting while Zoom in or Zoom out

      Reply
  2. CArnot says

    December 28, 2015 at 10:21 am

    Hi,

    The download link gives the same code with repainting problem. Please update the link. Enjoy, CArnot.

    Reply
    • Rajandran says

      December 29, 2015 at 1:36 am

      Take the code from the Github Code. Download link is not yet updated.

      Reply
      • Rajandran says

        December 29, 2015 at 1:40 am

        Now the download link too updated with the new file.

        Reply
  3. CArnot says

    December 29, 2015 at 10:18 pm

    Hi,
    Thanks for the efforts.
    Enjoy,
    CArnot

    Reply
  4. madan datheshwar says

    December 31, 2015 at 7:45 pm

    hello sir i am regular reader and follower of your AFL and POSTs lot of thanks
    sir my humble Request sir please prepaire to this AFL in to MULTI TIME FRAME ( Not MTF DashBoard ) means when we select 5 min chart but indicator play like 15 min s Data based , and 15 min chart like 60 min …………,
    sir i found like this supertrend in MQ4 but not in Amibroker so please ……………prepaire this AFL ( Coral Trend Indicator) in MTF i hope response possitively thankyou sir

    Reply
  5. madan datheshwar says

    January 2, 2016 at 11:45 am

    Sir below link is SUPERTREND MTF MT4

    As said in previous post if possible please modify COREL TREND. IN TO MULTI TIME FRAME.
    Thank you sir

    http://www.wisestocktrader.com/indicatorpasties/1566-supertrend-multi-time-frame-for-mt4&lc=en-IN&s=1&m=269&ts=1451714952&sig=ALL1Aj5CX0PgTHW3_URFhSivSQtsJNkhaA

    Reply
  6. Rid says

    January 3, 2016 at 9:02 pm

    Yes It would be excellent if Coral can be coded for multi time frame.
    Which means the buy signal would be generated in 5 min chart when 15 min chart turns green and in reverse sell would be signalled in conjunction with 15 mind chart or 30 mins chart.
    Even if there is a way to notice coral trend higher time frame indicator in lower time frame it would be excellent.

    Reply
  7. pit says

    January 9, 2016 at 7:54 pm

    Not better use this function instead looping.

    function T3( Price, T3Periods, s )
    {
    e1 = AMA( Price, 2 / ( T3Periods + 1 ) );
    e2 = AMA( e1, 2 / ( T3Periods + 1 ) );
    e3 = AMA( e2, 2 / ( T3Periods + 1 ) );
    e4 = AMA( e3, 2 / ( T3Periods + 1 ) );
    e5 = AMA( e4, 2 / ( T3Periods + 1 ) );
    e6 = AMA( e5, 2 / ( T3Periods + 1 ) );
    C1 = -s ^ 3;
    C2 = 3 * s ^ 2 * ( 1 + s );
    C3 = -3 * s * ( s + 1 ) ^ 2;
    C4 = ( 1 + s ) ^ 3;
    T3Result = c1 * e6 + c2 * e5 + c3 * e4 + c4 * e3;
    return T3Result;
    }

    Reply
  8. reetha says

    January 25, 2016 at 9:59 am

    How can I download the nifty future 15 mint charts

    Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Email Newsletter

Sign up to receive email updates on latest trading strategies , analysis & financial market updates

We Respect Your Privacy

Premium Access

Username:
Password:
Remember Me
Lost your password?

Tools For Traders

  • Marketcalls Android App
  • MCX Signals
  • Intraday Signals
  • International Commodities
  • OI Tracker
  • Participation OI
  • Your Broker
  • Market Sentiment Analysis

Amibroker Updates

Code Snippet: ATM Call and ATM Put calculation from Spot Prices: Amibroker AFL

December 10, 2019 By Rajandran 2 Comments

Volatile Phases – Colorful ADX Amibroker AFL Code

November 16, 2019 By Rajandran 4 Comments

Amibroker Technical Analysis Workshop – Bangalore

November 1, 2019 By Rajandran 2 Comments

How to Send Alerts from Amibroker to Telegram Channel using Telgram API

June 12, 2019 By Rajandran 15 Comments

How to Estimate the VWAP based settlement Close like a Pro using Amibroker?

June 9, 2019 By Rajandran Leave a Comment

  • Facebook
  • Google+
  • LinkedIn
  • RSS
  • Twitter
  • YouTube

Metatrader Updates

MetaTrader 5 Demo Servers Now Available for BSE Currency Markets

March 20, 2018 By Rajandran 8 Comments

ChartIQ – WebTrader for MT4

December 4, 2017 By Rajandran 5 Comments

Metatrader 4 – Web Platform Overview

October 29, 2015 By Rajandran 9 Comments

William VIX FIX Indicator for Metatrader 4

May 16, 2015 By Rajandran 9 Comments

How to Install Custom MQL4 indicators in Metatrader

November 14, 2014 By Rajandran 7 Comments


About | Contact Us | Terms and Conditions | Privacy Policy | Support Policy | Privacy Policy | Refund Policy | Disclaimer


© Copyright 2018 Marketcalls Financial Services Pvt Ltd · All Rights Reserved · And Our Sitemap · All Logos & Trademark Belongs To Their Respective Owners·

Data and information is provided for informational purposes only, and is not intended for trading purposes. Neither marketcalls.in website nor any of its promoters shall be liable for any errors or delays in the content, or for any actions taken in reliance thereon.