Category Other  Published on 18/08/2020

[PoshTrader] Pivot Points

Description

ctrader pivot points

The indicator automatically draws important Pivot Levels using the most popular approaches:

  • Classical
  • Floor
  • Camarilla
  • Woodie
  • Fibonacci
  • DeMark


Usage of Pivot Points

The very essence of trading with Pivot Points is based on the idea that the price tends to reach yesterday’s close point much more often than to overcome the previous day range. That’s why the most popular calculation period for Pivot Points is Daily.

In that context, all Pivot levels play the role of support and resistance. While analyzing the chart, we can see multiple price interactions with these levels. Also, one of the advantages of the Pivot indicator is its popularity, as the more traders use the same tool, the more likely the price will interact with it.


powered by PoshTrader Marketplace

 

How to install?


You might also be interested in:

[PoshTrader] ADX Signed

[PoshTrader] Bid and Ask

[PoshTrader] Deal Map

[PoshTrader] Divergence Spotter

[PoshTrader] Market Sentiment

[PoshTrader] Pivot Points

[PoshTrader] Position Axis

[PoshTrader] Renko Tails

[PoshTrader] Symbol Watermark 


/* -------------------------------------------------------------------------------
 *
 *      [PoshTrader] Pivot Points
 *
 *      Copyright (C) 2020, PoshTrader Ltd (https://poshtrader.com)
 *      PoshTrader reserves the right to modify or overwrite this algo with each release.
 *
 *      https://poshtrader.com/items/ctrader/4856/
 *
 * -------------------------------------------------------------------------------
 */

using cAlgo.API;
using PoshTrader.Licensing;

namespace cAlgo
{
    [Item(4856, "Pivot Points", Author = "PoshTrader")]
    [Indicator(IsOverlay = true, AccessRights = AccessRights.FullAccess)]
    public class PivotPoints : Indicator
    {
        protected override void Initialize()
        {
            new ItemLicense(this);
        }

        public override void Calculate(int index) { }
    }
}


Jiri's avatar
Jiri

Joined on 31.08.2015

  • Distribution: Free
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: [PoshTrader] Pivot Points.algo
  • Rating: 5
  • Installs: 21419
Comments
Log in to add a comment.
LC
LCForex.lt · 3 years ago

Hello, 

I installed your indicator, but I don't see any pivots.

SI
sierrafoxtrot · 3 years ago

Hi,

How could I use HLC from cash markets?

I want to enter the HLC manually for different indices.

Thanks in advance