Search found 10 matches

by jorsde
13 May 2014
Forum: MultiCharts .NET
Topic: Average Daily Range Calculation question [SOLVED]
Replies: 6
Views: 2536

Re: Average Daily Range Calculation question [SOLVED]

I've found a way to solve it as JoshM suggested but I think a simple function (or functions) which will retrieve this information will serve a lot of users because I can think of a lot of uses for it.

Thank you
by jorsde
02 May 2014
Forum: MultiCharts .NET
Topic: Average Daily Range Calculation question [SOLVED]
Replies: 6
Views: 2536

Re: Average Daily Range Calculation question [SOLVED]

The code you've posted only checks the current session, however I want to calculate the high/low that was 2 days ago or 100 days ago.
I want to calculate the average range during the last 2/3 months.

How can I get this data ?

Thank you
by jorsde
01 May 2014
Forum: MultiCharts .NET
Topic: Average Daily Range Calculation question [SOLVED]
Replies: 6
Views: 2536

Re: Average Daily Range Calculation question [SOLVED]

The solution you gave will work but is there a simple way to get a specific day High/low ?
by jorsde
27 Apr 2014
Forum: MultiCharts .NET
Topic: Average Daily Range Calculation question [SOLVED]
Replies: 6
Views: 2536

Average Daily Range Calculation question [SOLVED]

Hi I want to build a simple indicator that will calculate the average daily range (of the ~last 4 months) and plot it in the chart. I want to write a simple function that will looks something like Result = (Σ(day's high - Day's low) ) / 88 (around 88 trading days) However , I can't find how can I re...
by jorsde
25 Apr 2014
Forum: MultiCharts .NET
Topic: Murrey Math Levels for MC .net [SOLVED]
Replies: 6
Views: 2974

Re: Murrey Math Levels for MC .net [SOLVED]

I've found a working code for NT see below and attached and also another one that works for MQL4 (although I'm not sure it is correct). // // Copyright (C) 2006, NT LLC <NT@NT.com>. // NT reserves the right to modify or overwrite this NinjaScript component with each release. // #region Using declara...
by jorsde
24 Apr 2014
Forum: MultiCharts .NET
Topic: Murrey Math Levels for MC .net [SOLVED]
Replies: 6
Views: 2974

Murrey Math Levels for MC .net [SOLVED]

Hi

I've searched in many places but couldn't find a working Murrey Math indicator for Multicharts .Net.
I know there are a lot of free indicators for other platforms but converting them to Multicharts .Net is not that easy for me.

Do you know where can I find it ?

Thank you
by jorsde
11 Apr 2014
Forum: MultiCharts .NET
Topic: Showing only the value area (Volume profile) of today
Replies: 1
Views: 1334

Showing only the value area (Volume profile) of today

I have two questions about the value area (Volume profile) 1. Since the calculation of the value area is based on yesterday session I want to see only the value area of today. In today session I see the right calculation of value area but it is ended in yesterday session and today I see irrelevant l...
by jorsde
07 Apr 2014
Forum: MultiCharts .NET
Topic: Problem with a study - don't understand the error [SOLVED]
Replies: 5
Views: 2143

Re: Problem with a study - don't understand the error [SOLVED]

Thank you, It is working now but it looks like just two straight lines, probably because it starts from the beginning of the history and not the current session. Is there a way to force the calculation to be only for the current session (today) and not earlier ? using System; using System.Drawing; n...
by jorsde
07 Apr 2014
Forum: MultiCharts .NET
Topic: Problem with a study - don't understand the error [SOLVED]
Replies: 5
Views: 2143

Re: Problem with a study - don't understand the error [SOLVED]

I've tried it and got an error. See attached. What is wrong ? using System; using System.Drawing; using System.Linq; using PowerLanguage.Function; namespace PowerLanguage.Indicator { [SameAsSymbol(true)] public class Market_Status : IndicatorObject { private VariableObject<Double> m_Open; private Va...
by jorsde
06 Apr 2014
Forum: MultiCharts .NET
Topic: Problem with a study - don't understand the error [SOLVED]
Replies: 5
Views: 2143

Problem with a study - don't understand the error [SOLVED]

Hi I'm trying to create an study that will plot 3 lines on the price chart 1. A line of the open price 2. A line of the mid range ((high-low)/2) 3. An EMA The code I'm using complies but I when I try to add the indicator to a chart I get an error (See attached). I've attached the code and the screen...

Go to advanced search