Description
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.
You might also be interested in:
/* -------------------------------------------------------------------------------
*
* [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
Joined on 31.08.2015
- Distribution: Free
- Language: C#
- Trading platform: cTrader Automate
- File name: [PoshTrader] Pivot Points.algo
- Rating: 5
- Installs: 21885
- Modified: 13/10/2021 09:55
Comments
Hi,
How could I use HLC from cash markets?
I want to enter the HLC manually for different indices.
Thanks in advance
Hello,
I installed your indicator, but I don't see any pivots.