Description
Market Profile for cTrader platform: (V4.0)
- Daily session
- Single session
- Value Area
- Custom Presets
- Market Depth (direction)
- Fixed volume
- Selected area volume
- Multiple numbers of sessions
- Multiple timeframes (short-long)
- Buying and Selling volume
- Point of Control (POC)
- Profile high and Low.
- Daily levels
- Daily direction
- ATR value
7-day free trial
14-day guarantee refund policy
Lifetime license can be purchased >> here << or visit us at www.cealgo.com
Watch a Video Demonstration
using System;
using System.Linq;
using cAlgo.API;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
using cAlgo.Indicators;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Text;
namespace cAlgo
{
[Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
public class cTrader_Volume_Profile : Indicator
{
public void ShowMyDialogBox1()
{
InputDialog testDialog = new InputDialog();
switch (testDialog.ShowDialog())
{
case DialogResult.Yes:
System.Diagnostics.Process.Start("https://www.cealgo.com");
testDialog.Dispose();
break;
case DialogResult.Cancel:
// Print("DialogResult.Cancel");
if (testDialog.key_type.Equals("CANCEL"))
{
testDialog.Dispose();
}
break;
default:
Console.WriteLine("Default case");
break;
}
}
protected override void Initialize()
{
ShowMyDialogBox1();
}
public override void Calculate(int index)
{
}
}
}
DevCeAlgo
Joined on 27.01.2019
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: cTrader_Volume_Profile.algo
- Rating: 5
- Installs: 2198
- 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.
Comments
Log in to add a comment.
No comments found.