Category Other  Published on 01/06/2022

HarmonicPattern.com pattern scanner

Description

HarmonicPattern.com pattern scanner will scan for all harmonic patterns, chart patterns, and support/resistance levels. It can also help you scan all symbols across all timeframes. 

The Indicator also tells you about the current trend of the market based on the aggregate result of 20 different technical indicators.

 

License can be obtained on HarmonicPattern.com

Learn more here: https://harmonicpattern.com/ctrader

Our harmonic pattern scanner is powered by Finnhub stock API (Check out best stock api list for startups and best stock API guide). If you would like to do technical analysis for stock price in Excel or Google Sheets, check out Finsheet. They are chosen as one of the best financial data providers for spreadsheets user by Columbia University's students.

+ If you are a stock trader, you can also check out this value investing platform . This will save you guys a tons of time for tasks such as calculating intrinsic value, DCF and WACC. Here are a few examples: Apple Intrinsic Value, FB Intrinsic Value, Amazon Intrinsic ValueAAPL Wacc, AAPL DCF, TSLA WACC, MSFT WACC, TSLA DCF, MSFT DCF

+ If you are looking for an Edgar Company Search platform, check out AlphaResearch.io. You can perform searches on all SEC filings such as TSLA 10K, NFLX 10K, AAPL 10K, AAPL 10Q, MSFT 10K, FB 10K. That is why they are recommended as one of the best stock research websites available on the market.


// -------------------------------------------------------------------------------------------------
//
//    This code is a cTrader Automate API example.
//    
//    All changes to this file might be lost on the next application update.
//    If you are going to modify this file please make a copy using the "Duplicate" command.
//
// -------------------------------------------------------------------------------------------------

using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;

namespace cAlgo
{
    [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AutoRescale = false, AccessRights = AccessRights.None)]
    public class SampleAlligator : Indicator
    {
        [Parameter("Periods", Group = "Jaws", DefaultValue = 13)]
        public int JawsPeriods { get; set; }

        [Parameter("Shift", Group = "Jaws", DefaultValue = 8)]
        public int JawsShift { get; set; }

        [Parameter("Periods", Group = "Teeth", DefaultValue = 8)]
        public int TeethPeriods { get; set; }

        [Parameter("Shift", Group = "Teeth", DefaultValue = 5)]
        public int TeethShift { get; set; }

        [Parameter("Periods", Group = "Lips", DefaultValue = 5)]
        public int LipsPeriods { get; set; }

        [Parameter("Shift", Group = "Lips", DefaultValue = 3)]
        public int LipsShift { get; set; }

        [Output("Jaws", LineColor = "Blue")]
        public IndicatorDataSeries Jaws { get; set; }

        [Output("Teeth", LineColor = "Red")]
        public IndicatorDataSeries Teeth { get; set; }

        [Output("Lips", LineColor = "Lime")]
        public IndicatorDataSeries Lips { get; set; }

        private WellesWilderSmoothing jawsMa;
        private WellesWilderSmoothing teethMa;
        private WellesWilderSmoothing lipsMa;

        protected override void Initialize()
        {

            jawsMa = Indicators.WellesWilderSmoothing(MarketSeries.Median, JawsPeriods);
            teethMa = Indicators.WellesWilderSmoothing(MarketSeries.Median, TeethPeriods);
            lipsMa = Indicators.WellesWilderSmoothing(MarketSeries.Median, LipsPeriods);
        }

        public override void Calculate(int index)
        {
            Jaws[index + JawsShift] = jawsMa.Result[index];
            Teeth[index + TeethShift] = teethMa.Result[index];
            Lips[index + LipsShift] = lipsMa.Result[index];
        }
    }
}


DO
dominhtri1995

Joined on 10.04.2019

  • Distribution: Free
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: Sample Alligator.algo
  • Rating: 0
  • Installs: 3946
Comments
Log in to add a comment.
IL
Ililili · 3 years ago

Hi,

Is this still available for downloading?

I downloaded but instead Harmonic patterns I'm getting a Sample Alligator.

Thank you.

SE
secret.kingston · 4 years ago

Amazing indicator. Thank you :)