Description
Forex Trading Sessions Indicator,
When I'm trading I realized that the price use pivot or strongly change at time that change trading session. Ex New York open, London Open. Show I have coded an indicator for that purpose.
Buy this at
Parameters
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 TradingSessonIndicator : Indicator
{
protected override void Initialize()
{
if (RunningMode == RunningMode.RealTime || RunningMode == RunningMode.VisualBacktesting)
{
Chart.DrawStaticText("download_PRO", "\n\n\n\n\n\nTo download please visit: https://gum.co/tRLLj" + "\n\nContacts please write to: nghiand.amz@gmail.com", VerticalAlignment.Top, HorizontalAlignment.Center, Color.Yellow);
}
}
public override void Calculate(int index)
{
}
}
}
nghiand.amz
Joined on 06.07.2020
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: Trading Sesson Indicator.algo
- Rating: 2.5
- Installs: 1340
- Modified: 13/10/2021 09:54
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.
How do I get this sessions indicator please?