Description
Adds a watermark to the chart background displaying the ticker symbol of the primary instrument in the chart. The watermark appears as a semi-transparent text overlaying the chart background.
You might also be interested in:
/* -------------------------------------------------------------------------------
*
* [PoshTrader] Symbol Watermark
*
* 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/6072/
*
* -------------------------------------------------------------------------------
*/
using cAlgo.API;
using PoshTrader.Licensing;
namespace cAlgo
{
[Item(6072, "Symbol Watermark", Author = "PoshTrader")]
[Indicator(IsOverlay = true, AccessRights = AccessRights.FullAccess)]
public class SymbolWatermark : 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] Symbol Watermark.algo
- Rating: 5
- Installs: 16043
- 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.
https://docs.poshtrader.com/products/installation#ctrader-indicators-cbots
All indicators and cBots require unlimited access rights to communicate with our servers - validate your license, check for latest releases and updates.
congratulations and thanks for the indicator. But why does he need unlimited access?
Thanks for your reply.