.1VP - cTrader Market Profile (V4.0) paid
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
Notification Publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section you may use the Copyright Infringement Notification form to submit a claim.
Formula / Source Code
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) { } } }
Comments