Category Other  Published on 18/08/2020

[PoshTrader] Position Axis

Description

Position Axis displays a break-even point with additional info about your overall position in the market and a vertical profit axis that will help you analyze your performance and configure Stop Loss and Take Profit levels.

The algorithm works on both hedging and netting account types. It’s highly customizable and easy to set up, colors inherit from the chart.

Additionally, you can interact with the addon on a chart to quickly cycle between profit units displayed in the axis. You can click on the position info or the progress bar that will switch between Pips, Currency, and Percentage.


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] Position Axis
 *
 *      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/4115/
 *
 * -------------------------------------------------------------------------------
 */

using cAlgo.API;
using PoshTrader.Licensing;

namespace cAlgo
{
    [Item(4115, "Position Axis", Author = "PoshTrader")]
    [Indicator(IsOverlay = true, AccessRights = AccessRights.FullAccess)]
    public class PositionAxis : Indicator
    {
        protected override void Initialize()
        {
            new ItemLicense(this);
        }

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


Jiri's avatar
Jiri

Joined on 31.08.2015

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: [PoshTrader] Position Axis.algo
  • Rating: 5
  • Installs: 8142
Comments
Log in to add a comment.
No comments found.