Description
using
System;
using
cAlgo.API;
using
cAlgo.API.Internals;
using
cAlgo.API.Indicators;
using
cAlgo.Indicators;
namespace
cAlgo
{
[Indicator(IsOverlay =
true
, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
public
class
ClickAlgoIndicator : Indicator
{
[Parameter(DefaultValue = 0.0)]
public
double
Parameter {
get
;
set
; }
[Output(
"Main"
)]
public
IndicatorDataSeries Result {
get
;
set
; }
protected
override
void
Initialize()
{
Print(
"It is not possible to download the software from the cTDN website. Please visit clickalgo.com"
);
ChartObjects.DrawText(
"ShowCopyright"
,
"It is not possible to download the software from the cTDN website. Please visit:- https://clickalgo.com/ctrader-weis-wave-indicator"
, StaticPosition.BottomCenter);
}
public
override
void
Calculate(
int
index)
{
// Calculate value at specified index
// Result[index] = ...
}
}
}
using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;
namespace cAlgo
{
[Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
public class ClickAlgoIndicator : Indicator
{
[Parameter(DefaultValue = 0.0)]
public double Parameter { get; set; }
[Output("Main")]
public IndicatorDataSeries Result { get; set; }
protected override void Initialize()
{
Print("It is not possible to download the software from the cTDN website. Please visit clickalgo.com");
ChartObjects.DrawText("ShowCopyright", "It is not possible to download the software from the cTDN website. Please visit:- https://clickalgo.com/di-volume-activity-and-weis-wave-volume-indicators", StaticPosition.BottomCenter);
}
public override void Calculate(int index)
{
// Calculate value at specified index
// Result[index] = ...
}
}
}
wftrader10
Joined on 18.12.2020
- Distribution: Free
- Language: C#
- Trading platform: cTrader Automate
- File name: ClickAlgo Indicator.algo
- Rating: 0
- Installs: 1508
- Modified: 13/10/2021 09:54