Category Other  Published on 18/08/2020

[PoshTrader] Deal Map

Description

ctrader bid and ask

This indicator maps your historical deals and opened positions on the chart. Additionally, It displays labels with performance metrics to help you quickly analyze your gains. You can choose to display the performance in pips, account currency, or percentual gain.

ctrader bid and ask parameters

What are the key features?

– Cycle between displayed units by holding Quick Switch key and pressing the left mouse button on the chart.
– Display the deal map on any chart type, including Renko.


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] Deal Map
 *
 *      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/1042/
 *
 * -------------------------------------------------------------------------------
 */

using cAlgo.API;
using PoshTrader.Licensing;

namespace cAlgo
{
    [Item(1042, "Deal Map", Author = "PoshTrader")]
    [Indicator(IsOverlay = true, AccessRights = AccessRights.FullAccess)]
    public class RenkoTails : 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] Deal Map.algo
  • Rating: 5
  • Installs: 9001
Comments
Log in to add a comment.
No comments found.