ADR paid
Description
This indicator is a cTrader indicator that displays ADR (Average Daily Range) on the chart.
feature
・Two calculate modes, dynamic and static.
・Two display modes (on the chart and on the right side of the chart)
・The color, style, transparency, and thickness of each line that can display up to 4 can be changed.
・A rectangle that makes the rest up to ADR visually easy to understand
YouTube:
Price:$5
Another indicators:
Auto Calculate Lot size +SL and TP Line
MTF OHLCFP Lines Candles Before
Static Label and Horizon Linde
Upper TF Heikin-ashi Bull Bear
Best Regards
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 cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; using cAlgo.Indicators; namespace cAlgo { [Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class ADRsample : Indicator { protected override void Initialize() { } public override void Calculate(int index) { Chart.DrawText("Please download above link", "", index, 100, Color.Black); } } }
Comments