Search found 9 matches

by bruce.mtpredictor
30 Oct 2014
Forum: MultiCharts
Topic: Scanner only indicator
Replies: 1
Views: 856

Scanner only indicator

Is there a way to create a Scanner Only indicator other than by using GetAppInfo and the Abort functions?
by bruce.mtpredictor
29 Oct 2014
Forum: MultiCharts
Topic: Controlling the the number of bars loaded in the scanner [SOLVED]
Replies: 2
Views: 2033

Controlling the the number of bars loaded in the scanner [SOLVED]

As we all know, in a chart we can control the number of bars loaded via the Date Range property. Either "Bars Back" or "Days Back" can be selected. Is there anyway to control the number of bars loaded in the Scanner? Here is what I tried: 1. First, by default I just ran the indicator and 81 bars wer...
by bruce.mtpredictor
28 Oct 2014
Forum: MultiCharts
Topic: Can't find DLL
Replies: 3
Views: 2066

Re: Can't find DLL

Ah, maybe it isn't. I am using the same DLL from TS which is a 32 bit platform. I will compile a 64 bit version. Also, where does MC search for DLLs? In TS it uses the following for PATH: PATH is the Windows directory path to the DLL file. PATH is an optional parameter. If a path is not specified, t...
by bruce.mtpredictor
28 Oct 2014
Forum: MultiCharts
Topic: Can't find DLL
Replies: 3
Views: 2066

Can't find DLL

Here is the Power language code test the DLL call: external: "MTPredictor.DataFeed.Producer.Bridge.Unmanaged.dll", int, "InitializeDataFeed", string{platform}; vars: bool firstTime(true); if firstTime then begin InitializeDataFeed("Multicharts"); firstTime = false; end; See attached image of DLL loc...
by bruce.mtpredictor
27 Oct 2014
Forum: MultiCharts
Topic: Is there an equivalent to the TS "method" keyword
Replies: 7
Views: 2794

Re: Is there an equivalent to the TS "method" keyword

Well I don't agree that this is an object oriented construct. This basically a subroutine. I currently have a DLL function that is called from various places in my code. After calling the function I have a common routine ( in TS)that processes the return code. I can get around this issue by duplicat...
by bruce.mtpredictor
21 Oct 2014
Forum: MultiCharts
Topic: Is there an equivalent to the TS "method" keyword
Replies: 7
Views: 2794

Re: Is there an equivalent to the TS "method" keyword

I do not believe that this is part of the OOEL. I believe it is part of Easy Language itself. It is a reserved keyword. Below is from TS's documentation: The method reserved word allows you to create a named subroutine within an EasyLanguage document that consists of a sequence of statements to perf...
by bruce.mtpredictor
21 Oct 2014
Forum: MultiCharts
Topic: Is there an equivalent to the TS "method" keyword
Replies: 7
Views: 2794

Is there an equivalent to the TS "method" keyword

[Tag] TS OOEL I have an Easy Language TS indicator that uses a lot of methods to structure the code. Is there an equivalent keyword in Power Language. I know I could use functions but one of the reasons not to use a lot of "functions" in TS is because they are not that efficient. Also most of my met...
by bruce.mtpredictor
20 Oct 2014
Forum: MultiCharts
Topic: Need to be notified when an indicator is being unloaded
Replies: 1
Views: 816

Need to be notified when an indicator is being unloaded

Is there a power language event that is fired when an indicator is about to be unloaded or removed?

Go to advanced search