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.
You might also be interested in:
/* -------------------------------------------------------------------------------
*
* [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
Joined on 31.08.2015
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: [PoshTrader] Position Axis.algo
- Rating: 5
- Installs: 8142
- Modified: 13/10/2021 09:55
Note that publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section, please use the Copyright Infringement Notification form to submit a claim.
Comments
Log in to add a comment.
work in mac ?