Search found 24 matches

by Louis88
11 Jul 2017
Forum: MultiCharts .NET
Topic: RTD Server. SymbolData Indicator not compiled.
Replies: 6
Views: 3653

Re: RTD Server. SymbolData Indicator not compiled.

Hello JoshM, here's the script: using System; using System.Drawing; using System.IO; using System.Reflection; using System.Windows.Forms; using PowerLanguage.Function; namespace PowerLanguage.Indicator{ public class SymbolData : IndicatorObject { public SymbolData(object _ctx):base(_ctx){} private c...
by Louis88
03 Jul 2017
Forum: MultiCharts .NET
Topic: RTD Server. SymbolData Indicator not compiled.
Replies: 6
Views: 3653

Re: RTD Server. SymbolData Indicator not compiled.

Angelina, here errors description in english language: Severity Error Code CS0029 Description Cannot implicitly convert type 'System.Type' to 'PowerLanguage.Indicator.Type' Project PLStudies2010 File C:\ProgramData\TS Support\MultiCharts .NET64\StudyServer\Techniques\CS\SymbolData.Indicator.CS Line ...
by Louis88
01 Jul 2017
Forum: MultiCharts .NET
Topic: RTD Server. SymbolData Indicator not compiled.
Replies: 6
Views: 3653

Re: RTD Server. SymbolData Indicator not compiled.

Angelina,
I didn't make any changes to the RTD Server itself.
by Louis88
30 Jun 2017
Forum: MultiCharts .NET
Topic: RTD Server. SymbolData Indicator not compiled.
Replies: 6
Views: 3653

RTD Server. SymbolData Indicator not compiled.

Hello, I’m trying to install an RTD Server on my pc. OS is Windows 10 Pro MC is .NET64 Version 10.0 Release (Build 14420) RTD Server is 1.0.56.400_Release_net_x64. SymbolData Indicator doesn’t compile, errors as follows: (Apologies for bad formatting ). Impossibile convertire implicitamente il tipo ...
by Louis88
27 Sep 2015
Forum: MultiCharts .NET
Topic: Using MathNet.Numerics.Statistics
Replies: 1
Views: 2647

Using MathNet.Numerics.Statistics

Hello, I'm trying to use the Math.Net Numerics Package (version 3.7.1) and I've started from Statistics. In the following code: using System; using System.Linq; using System.Collections.Generic; using MathNet.Numerics.Statistics; namespace PowerLanguage.Indicator { public class PR_LognormalExample :...
by Louis88
17 Sep 2015
Forum: MultiCharts .NET
Topic: Return multiple VariableSeries from function [SOLVED]
Replies: 4
Views: 3052

Re: Return multiple VariableSeries from function [SOLVED]

Hello gztanwei,
yes, that's the hint I was looking for.
Many Thanks
by Louis88
15 Sep 2015
Forum: MultiCharts .NET
Topic: Return multiple VariableSeries from function [SOLVED]
Replies: 4
Views: 3052

Re: Return multiple VariableSeries from function [SOLVED]

I've modified the code this way: using System; using System.Collections.Generic; namespace PowerLanguage { namespace Function { public sealed class SomeVolumeCalculations : FunctionSeries<VariableSeries<int>> { public SomeVolumeCalculations(CStudyControl _master) : base(_master) { } public SomeVolum...
by Louis88
13 Sep 2015
Forum: MultiCharts .NET
Topic: Return multiple VariableSeries from function [SOLVED]
Replies: 4
Views: 3052

Return multiple VariableSeries from function [SOLVED]

Hello, as an absolute beginner in c#, I have the following question to ask. Is it possible to export multiple VariableSeries from a function to an indicator? Let's say I have this function: using System; namespace PowerLanguage { namespace Function { public sealed class SomeVolumeCalculations : Func...
by Louis88
17 Aug 2015
Forum: MultiCharts .NET
Topic: System.IO.FileNotFoundException [SOLVED]
Replies: 4
Views: 3618

Re: System.IO.FileNotFoundException [SOLVED]

Hello Henry, this code: using System; using System.Drawing; using System.Linq; using PowerLanguage.Function; namespace PowerLanguage.Indicator { [SameAsSymbol(true)] public class PR_Example_PLEditorOutput : IndicatorObject { public PR_Example_PLEditorOutput(object _ctx) : base(_ctx) { } protected ov...
by Louis88
17 Aug 2015
Forum: MultiCharts .NET
Topic: System.IO.FileNotFoundException [SOLVED]
Replies: 4
Views: 3618

Re: System.IO.FileNotFoundException [SOLVED]

Hello Henry,
Yes, I was running only PL .NET Editor as administrator. The problem is now solved.

As for the second issue:
MultiCharts .NET64 Version 9.1 Beta 1 (Build 11497)
Windows 10 Home edition.

Many thanks
by Louis88
17 Aug 2015
Forum: MultiCharts .NET
Topic: System.IO.FileNotFoundException [SOLVED]
Replies: 4
Views: 3618

System.IO.FileNotFoundException [SOLVED]

Hello, I'm moving first steps in .Net. This error message appears if I want to insert any study (please see attached image). It appears ONLY if PowerLanguage.Net Editor was started BEFORE MultiCharts.Net64. Another issue I'm experiencing: I can't send any text to the Output window. As an example the...
by Louis88
10 Jun 2015
Forum: MultiCharts
Topic: Dynamic array bounds error on market scanner [SOLVED]
Replies: 4
Views: 2644

Re: Dynamic array bounds error on market scanner [SOLVED]

Hello Henry,
I've modified the following condition:

Code: Select all

if (Symbol_Date > Array_Day[DayCounter]) and (DayCounter > 1) then begin
and now it seems to work (if more than one day of data is loaded).
Many thanks for your help.
by Louis88
07 Jun 2015
Forum: MultiCharts
Topic: Dynamic array bounds error on market scanner [SOLVED]
Replies: 4
Views: 2644

Re: Dynamic array bounds error on market scanner [SOLVED]

Hello JoshM, thanks for your interest. The number of bars a stock auctions every day is very very variable. And this is true for heavily traded stocks and for thin stocks. This variable is really erratic. Furthermore I'm going back not more than 15 calendar days (about 10-11 trading days) in my anal...
by Louis88
07 Jun 2015
Forum: MultiCharts
Topic: Dynamic array bounds error on market scanner [SOLVED]
Replies: 4
Views: 2644

Dynamic array bounds error on market scanner [SOLVED]

Hello, I'm on 15 seconds timeframe. I want to know how many trading days are there on a chart and how many bars are there in any of these trading days. So I wrote these rows: Variables: BarCounter (0), DayCounter (1); Arrays: Array_Day[50] (0), Array_DailyBars[50] (0); if (CurrentBar = 1) then Clear...
by Louis88
11 May 2015
Forum: MultiCharts
Topic: PL Editor Output window [SOLVED]
Replies: 2
Views: 1968

Re: PL Editor Output window [SOLVED]

Many thanks Alex.
The problem is solved!
by Louis88
11 May 2015
Forum: MultiCharts
Topic: PL Editor Output window [SOLVED]
Replies: 2
Views: 1968

PL Editor Output window [SOLVED]

The output window of the PL Editor slipped away and its titlebar is outside desktop. So I can't move it anymore. I can click on it and make it the active window with the cursor blinking, but the combination ALT + spacebar moves the PE Editor main Window, not the child window (output window). Restart...
by Louis88
15 Mar 2015
Forum: MultiCharts
Topic: Vertical trendlines at mouse click [SOLVED]
Replies: 2
Views: 1941

Re: Vertical trendlines at mouse click [SOLVED]

Many thanks for your help JoshM.
I've made a mess.
I will study your code and the material on the site.
Thanks again.
by Louis88
14 Mar 2015
Forum: MultiCharts
Topic: Vertical trendlines at mouse click [SOLVED]
Replies: 2
Views: 1941

Vertical trendlines at mouse click [SOLVED]

Hello, I'm working on 1 minute barcharts. I would like to: 1. plot a first vertical line on the chart by left clicking on a certain date and time 2. plot a second vertical line on the chart by left clicking on a certain date and time 3. calculate the number of bars between the two lines 4. dimension...
by Louis88
26 Dec 2014
Forum: MultiCharts FAQ
Topic: Data Range Value
Replies: 1
Views: 2619

Data Range Value

Hello, I would like to know what's the reserved word (if any) which retains the value I set in the Format Instrument, Settings, Data Range. I expected to find maybe a reserved word, maybe a function, something like: GetDataRange(n, t) where n could be, in turn, the number of days back or the number ...
by Louis88
27 Oct 2014
Forum: MultiCharts
Topic: The export of List of Trades through FileAppend
Replies: 2
Views: 944

Re: The export of List of Trades through FileAppend

Thank you very much JoshM.
Best regards
by Louis88
26 Oct 2014
Forum: MultiCharts
Topic: The export of List of Trades through FileAppend
Replies: 2
Views: 944

The export of List of Trades through FileAppend

I'm using FileAppend to export to a .csv file Date, Time, OHLC, volume, indicators and oscillators. I can't find a way to refer to the data in the Strategy Performance Report, List of Trades, such as: Trade Number, Type, Signal, Profit %, Drawdown % for every trade. Any idea on how to export the Lis...
by Louis88
28 Sep 2013
Forum: MultiCharts
Topic: Rounding numeric expressions in Market Scanner [SOLVED]
Replies: 3
Views: 1674

Rounding numeric expressions in Market Scanner [SOLVED]

Hi everybody, I didn't find any previous post on the subject. If there is any, please consider my apologies. I've added the following numeric expressions to Market Scanner: //----------------------------------------------------------------- Vars: NetChng(0), ChngPct(0), IndClose(0), Rou(3); NetChng ...
by Louis88
11 May 2013
Forum: MultiCharts
Topic: configurazione Multicharts IWBANK [SOLVED]
Replies: 2
Views: 3374

Re: configurazione Multicharts IWBANK [SOLVED]

Hello pastorc, please pay attention to the status of the "hosts" file. If it's in a "read-only" condition (check it with file properties) then the text editor will save it with a .txt extension and things won't work. Please confirm that the "hosts" file is writeable before attempting to modify it. H...

Go to advanced search