MC.net: (Multi-Timeframe) Directly Added Indicators vs BarsOfData/CustomInstrument

Questions about MultiCharts .NET and user contributed studies.
rc76
Posts: 50
Joined: 14 Oct 2020
Has thanked: 16 times

MC.net: (Multi-Timeframe) Directly Added Indicators vs BarsOfData/CustomInstrument

Postby rc76 » 11 Jun 2021

[Issue]
I am trying to create a multi-timeframe indicator both daily and weekly data-series, plotted on a daily chart. I have identified (at least from my coding knowledge so far) there is discrepancy among the indicator results from the different method I used to create the indicators.

Default Method (Indicator plots are accurate compared to ToS)
(1) Default: Add weekly data-series directly from Chart's "Insert Instrument" menu. Than add existing EMA indicators (Mov_Avg_Exponential) directly against daily and weekly data.

TOS vs Default Method.PNG
(283.93 KiB) Not downloaded yet

Coded Methods

(2) BarsOfData: Add weekly data-series directly from Chart's "Insert Instrument" menu. Than create a custom indicator using BarsOfData to retrieve weekly data, and plot the daily/weekly EMA using XAverage.

Code: Select all

using System; using System.Drawing; using System.Linq; using PowerLanguage.Function; namespace PowerLanguage.Indicator { [SameAsSymbol(true)] public class _aa_MTF_BarsOfData : IndicatorObject { public _aa_MTF_BarsOfData(object _ctx) : base(_ctx) { } private IPlotObject plot_EMA_d; private IPlotObject plot_EMA_w; //CustomInstrument m_WeeklyData; XAverage ema_day; XAverage ema_week; protected override void Create() { plot_EMA_d = AddPlot(new PlotAttributes("", EPlotShapes.Line, Color.Red, Color.Black, 4, EPlotStyle.Solid, false)); plot_EMA_w = AddPlot(new PlotAttributes("", EPlotShapes.Line, Color.Cyan, Color.Black, 4, EPlotStyle.Solid, false)); ema_day = new XAverage(this); ema_week = new XAverage(this); } protected override void StartCalc() { ema_day.Price = Bars.Close; ema_day.Length = 9; ema_week.Price = BarsOfData(2).Close; ema_week.Length = 9; } protected override void CalcBar() { plot_EMA_d.Set(ema_day[0]); plot_EMA_w.Set(ema_week[0]); } } }
(3) CustomInstrument: Create a custom indicator. Retrieve the weekly data using CustomInstrument. Plot the daily/weekly EMA using XAverage.

Code: Select all

using System; using System.Drawing; using System.Linq; using PowerLanguage.Function; namespace PowerLanguage.Indicator { [SameAsSymbol(true)] public class _aa_MTF_CustomInstrument : IndicatorObject { public _aa_MTF_CustomInstrument(object _ctx) : base(_ctx) { } private IPlotObject plot_EMA_d; private IPlotObject plot_EMA_w; CustomInstrument m_WeeklyData; XAverage ema_day; XAverage ema_week; protected override void Create() { plot_EMA_d = AddPlot(new PlotAttributes("", EPlotShapes.Line, Color.Red, Color.Black, 4, EPlotStyle.Solid, false)); plot_EMA_w = AddPlot(new PlotAttributes("", EPlotShapes.Line, Color.Cyan, Color.Black, 4, EPlotStyle.Solid, false)); ema_day = new XAverage(this); ema_week = new XAverage(this); } protected override void StartCalc() { m_WeeklyData = new CustomInstrument(this, new Resolution(EResolution.Week, 1)); ema_day.Price = Bars.Close; ema_day.Length = 9; ema_week.Price = m_WeeklyData.Close; ema_week.Length = 9; } protected override void CalcBar() { plot_EMA_d.Set(ema_day[0]); plot_EMA_w.Set(ema_week[0]); } protected override void Dispose(bool _b) { m_WeeklyData.Dispose(); } } }
[Test Results]
Both BarsOfData and CustomInstrument indicator plot results are the same. However they are different to the default method result, which is accurate as it is compared against ToS's result.

BarsOfData and CustomInstrument.PNG
(391.92 KiB) Not downloaded yet

Did I use the BarsOfData/CustomInstrument incorrectly? Any tip or help will be truly appreciated!

Thank you everyone!

User avatar
Vlada MultiCharts
Posts: 293
Joined: 22 Apr 2020
Has thanked: 8 times
Been thanked: 76 times

Re: MC.net: (Multi-Timeframe) Directly Added Indicators vs BarsOfData/CustomInstrument

Postby Vlada MultiCharts » 17 Jun 2021

Hello,

I believe the issue is the same as described in this thread, where we have already posted a reply with a coding example both for MultiCharts and MultiCharts .NET.


Return to “MultiCharts .NET”