MTF MACD paid
Description
This is an indicator of the upper time frame MACD.
YouTube:
Price:$12
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 = true, TimeZone = TimeZones.UTC, AutoRescale = false, AccessRights = AccessRights.None)] public class MTFMACDsample : Indicator { public override void Calculate(int index) { Chart.DrawText("Please download above link", "", index, 0, Color.Beige); } } }
Comments