Search found 40 matches

by holya
11 Jan 2017
Forum: MultiCharts .NET
Topic: DataLoader
Replies: 1
Views: 1151

DataLoader

Hi,

DataLoader.BeginLoad DOES NOT work anymore! doesn't do anything. why?

Thanks
by holya
20 Dec 2016
Forum: MultiCharts .NET
Topic: Using QuoteManager directly without plstudies api?
Replies: 3
Views: 1962

Re: Using QuoteManager directly without plstudies api?

I want to use the data managed by quotemanager from outside the plstudies solution. How can I do that?
by holya
08 Jul 2016
Forum: MultiCharts .NET
Topic: Using QuoteManager directly without plstudies api?
Replies: 3
Views: 1962

Using QuoteManager directly without plstudies api?

Is this possible?. I am having great difficulties with MC api, to the point that I'm looking at other options.
by holya
16 Aug 2015
Forum: MultiCharts .NET
Topic: Multi-timeframe indicator/strategy
Replies: 3
Views: 2474

Re: Multi-timeframe indicator/strategy

Thank you Henry, I realize that obviously, but I am looking for suggestion as to how to accomplish this. Any thoughts?
by holya
11 Aug 2015
Forum: MultiCharts .NET
Topic: plot price and line at specific time
Replies: 3
Views: 2548

Re: plot price and line at specific time

Is this what you're looking for? public static void DrawCloseRef(DrawContext context, IBar lastBar) { Graphics g = context.graphics; Pen pen = new Pen(new SolidBrush(Color.White)); float left = context.FullRect.Right - 100; pen.Color = Color.White; PointF closePf = context.Environment.ChartPoint2Poi...
by holya
11 Aug 2015
Forum: MultiCharts .NET
Topic: Multi-timeframe indicator/strategy
Replies: 3
Views: 2474

Multi-timeframe indicator/strategy

I am writing an indicator which uses multiple timeframe from yearly down to minute bars. Now, if I want to back-test or use the backward/forward buttons on the chart the bars will be pushed to the CalcBar method, as oppose to a more intuitive way through DataLoader object where I download historical...
by holya
19 Oct 2014
Forum: MultiCharts .NET
Topic: Delete VB project permanently.
Replies: 3
Views: 1698

Re: Delete VB project permanently.

Trust me, I have removed the VB project from the visual studio and I have also manually deleted all its files from windows explorer. And if I open the PLEditor, all those files are there again!
by holya
18 Oct 2014
Forum: MultiCharts .NET
Topic: Delete VB project permanently.
Replies: 3
Views: 1698

Delete VB project permanently.

How can delete VB codes from my solution?? When I delete it even using the PLEditor, it somehow copy the whole goddamn code back again!


Heeeeeellllppp!

Thank you.
by holya
01 Sep 2014
Forum: MultiCharts .NET
Topic: .net 4.5 and PL editor [SOLVED]
Replies: 2
Views: 1641

Re: .net 4.5 and PL editor [SOLVED]

Can I write my studies in a separate VS Solution/Project and then add a reference to it in PLStudies2010 Solution that was shipped with MC.net?! I'd be surprised.
by holya
01 Sep 2014
Forum: MultiCharts .NET
Topic: .net 4.5 and PL editor [SOLVED]
Replies: 2
Views: 1641

.net 4.5 and PL editor [SOLVED]

I created some indicators using vs 2013. And when I wanted to add it to PLStudies2010 Project VS complained(obviously) so I had recompile my indicators to target .net 3.5, which I did. VS stopped complaining and compiled successfully. But MC said that I had to use PL editor to compile my indicator t...
by holya
09 Feb 2014
Forum: MultiCharts .NET
Topic: real time data inconsistancy [SOLVED]
Replies: 8
Views: 2235

Re: real time data inconsistancy [SOLVED]

The answer lied within overriding the StopCalc() virtual method, where we can do cleaning up.

Thank you.
by holya
07 Feb 2014
Forum: MultiCharts .NET
Topic: real time data inconsistancy [SOLVED]
Replies: 8
Views: 2235

Re: real time data inconsistancy [SOLVED]

ok i still don't know where to call EndLoadData. Can you please help?
by holya
07 Feb 2014
Forum: MultiCharts .NET
Topic: real time data inconsistancy [SOLVED]
Replies: 8
Views: 2235

Re: real time data inconsistancy [SOLVED]

How do I "Unsubscribe"? on what object?
by holya
06 Feb 2014
Forum: MultiCharts .NET
Topic: real time data inconsistancy [SOLVED]
Replies: 8
Views: 2235

Re: real time data inconsistancy [SOLVED]

I have the latest version (8.8). I have numerous symbols on my WatchList where I can click on any of them to run my indicators (obviously!). And when I click on any other symbol the "else if (result.Event == DataLoadedEvent.RTUpdateLastBar) { this.newAnalyzer.UpdateBar((Bar)(result.RTData)); this.ic...
by holya
06 Feb 2014
Forum: MultiCharts .NET
Topic: real time data inconsistancy [SOLVED]
Replies: 8
Views: 2235

real time data inconsistancy [SOLVED]

protected override void StartCalc() { InstrumentDataRequest idr = this.Bars.Request; idr.Resolution = this.Bars.Info.Resolution; idr.Subscribe2RT = true; DataRequest range = new DataRequest(); range.RequestType = DataRequestType.BarsBack; range.Count = this.Bars.FullSymbolData.Count; range.To = this...
by holya
25 Jan 2014
Forum: MultiCharts .NET
Topic: Looking for trading partners.
Replies: 1
Views: 1136

Looking for trading partners.

I am a programmer with 10 years of C# experience. I am looking for people who are interested in developing strategies which use price action rather than moving averages or such indicators. I have already developed indicators which shows price action of a symbol and its past areas of support and resi...
by holya
29 Apr 2013
Forum: MultiCharts .NET
Topic: Question regarding IDataLoader.BeginLoadData. [SOLVED]
Replies: 3
Views: 1920

Re: Question regarding IDataLoader.BeginLoadData. [SOLVED]

Hi Henry, thanks for the prompt reply,
I'm talking about the Step forward/backward feature. When in this mode, the delegate which is passed to the BeginLoadData is not called.
by holya
27 Apr 2013
Forum: MultiCharts .NET
Topic: Question regarding IDataLoader.BeginLoadData. [SOLVED]
Replies: 3
Views: 1920

Question regarding IDataLoader.BeginLoadData. [SOLVED]

I am downloading historical data via IDataLoader interface. I used to add new oncoming data(including RT) to my historical list in CalcBar method, which worked. But I had to manually calculate if the end of the last bar had been reached, and if so create a new bar. In version 8.5 we have the option ...
by holya
27 Dec 2012
Forum: MultiCharts .NET
Topic: Application Launch [SOLVED]
Replies: 4
Views: 2788

Re: Application Launch [SOLVED]

This would truly be a wonderful feature.
by holya
23 Oct 2012
Forum: MultiCharts .NET
Topic: IDataLoader question
Replies: 3
Views: 2380

Re: IDataLoader question

In the code above where it says:
this.monthlyPa.AddBars(result.Data);
It copies the data to the monthlyPa object. There are 7 or 8 charts which download multiple timeframes.
by holya
23 Oct 2012
Forum: MultiCharts .NET
Topic: IDataLoader question
Replies: 3
Views: 2380

Re: IDataLoader question

Thank you Henry.
by holya
20 Oct 2012
Forum: MultiCharts .NET
Topic: IDataLoader question
Replies: 3
Views: 2380

IDataLoader question

I have an indicator which uses the following code to request data: idr.Resolution = new Resolution(EResolution.Month, 1); dlr = dl.BeginLoadData(idr, result => { this.monthlyPa.AddBars(result.Data); dl.EndLoadData(result); }, null); while (!dlr.IsCompleted) Thread.Sleep(100); This code was working f...
by holya
20 Oct 2012
Forum: MultiCharts .NET
Topic: Re-using code
Replies: 15
Views: 6623

Re: Re-using code

Thanks for the info. But putting my classes into Functions doesn't solve a whole lot! I wanted a separate project. Everytime PLEditor is opened it actually creates a new project and kicks out everything other than PLStudies2010.
by holya
20 Oct 2012
Forum: MultiCharts .NET
Topic: Re-using code
Replies: 15
Views: 6623

Re: Re-using code

Oh by the way, I did add a reference to MyClasses in PLStudies2010 as well.
by holya
20 Oct 2012
Forum: MultiCharts .NET
Topic: Re-using code
Replies: 15
Views: 6623

Re: Re-using code

Ok, I just did everything Dr. Dru said up there to Add a class in a separate Project in VS2010. This is the steps I took: 1. Added a new project(MyClasses) under the same solution(PLStudies2010). 2. Added bunch of classes to MyClasses. 3. Added references to PLTypes and PLStudiesProxy to MyClasses. ...
by holya
14 Oct 2012
Forum: MultiCharts .NET
Topic: Is it possible to protect a study? [SOLVED]
Replies: 4
Views: 3238

Re: Is it possible to protect a study? [SOLVED]

Well, MC.net is supposed to be able to modify(compile) studies. If most of the time you find yourself wanting to do that maybe regular MC is a better option for you.
by holya
14 Oct 2012
Forum: MultiCharts .NET
Topic: Is it possible to protect a study? [SOLVED]
Replies: 4
Views: 3238

Re: Is it possible to protect a study? [SOLVED]

What do you mean by "protect"? Something like version control?
by holya
09 Oct 2012
Forum: MultiCharts .NET
Topic: How and where to force Context to redraw. [SOLVED]
Replies: 1
Views: 2240

How and where to force Context to redraw. [SOLVED]

I'm using GDI+ to draw complex shapes on my chart. But so far I haven't been able to force the context to redraw itself, so I have to interact with the chart to do so which is unreasonable! I have used context.DirtyRect = context.FullRect and context.ReDraw = true; in Draw method but no luck! Does a...
by holya
30 Sep 2012
Forum: MultiCharts .NET
Topic: IQFEED question.
Replies: 1
Views: 2087

IQFEED question.

I use Bars.Sessions to extract sessions that belong to one day, for stocks this is a list of three sessions(8am to 9:30am - 9:30am to 4pm - 4pm to 8 pm). And then I start downloading intraday bars(30 min) for each session separately. The problem is that for the regular hours session(9:30 to 4pm) it ...
by holya
26 Sep 2012
Forum: MultiCharts .NET
Topic: Massive memory usage on MC.net
Replies: 22
Views: 7647

Re: Massive memory usage on MC.net

Yes, it is the MultiCharts64.exe that's memory hungry. On the same note, I'm sure MC developers will come up with a solution so we don't have to keep speculating as to what's causing the problem. This application seems to be capable of handling complex codes and hopefully we won't need to sacrifice ...
by holya
26 Sep 2012
Forum: MultiCharts .NET
Topic: Massive memory usage on MC.net
Replies: 22
Views: 7647

Re: Massive memory usage on MC.net

I've been monitoring my MC and noticed that it reaches 2 GB in no time! There's a heavy leak somewhere. Hope they fix this or this is going to be a huge problem. :(
by holya
26 Sep 2012
Forum: MultiCharts .NET
Topic: Massive memory usage on MC.net
Replies: 22
Views: 7647

Re: Massive memory usage on MC.net

I just realized that my MC.net is taking up 2GB! No wonder it's slow, it's %98 full!
by holya
17 Sep 2012
Forum: MultiCharts .NET
Topic: Live session question. [SOLVED]
Replies: 1
Views: 2257

Live session question. [SOLVED]

I have an indicator that downloads a symbol's tick manually, when it is done and starts executing CalcBar method, what is the best way to check see if it is the live "Bar" object and create a new Bar object to give it to my "Market Profile" list?
Thanx in andvance.
by holya
12 Sep 2012
Forum: MultiCharts .NET
Topic: Overnight sessions [SOLVED]
Replies: 2
Views: 2987

Overnight sessions [SOLVED]

How can I download overnight sessions using IDataLoader? I can do that using the app itself, but I can't find a property that lets me do that.

Thanks in advance.
by holya
07 Sep 2012
Forum: MultiCharts .NET
Topic: Application wide object/indicator [SOLVED]
Replies: 4
Views: 3349

Re: Application wide object/indicator [SOLVED]

Oh really? That I had no idea about! Thank you very much.
by holya
06 Sep 2012
Forum: MultiCharts .NET
Topic: Application wide object/indicator [SOLVED]
Replies: 4
Views: 3349

Re: Application wide object/indicator [SOLVED]

Thank you for the reply. But the question still remains. Where can I declare the indicator? If I declare this class in every indicator that needs it, it would be very inefficient.
by holya
06 Sep 2012
Forum: MultiCharts .NET
Topic: Bid Ask [SOLVED]
Replies: 3
Views: 3103

Re: Bid Ask [SOLVED]

Thanks for the reply. StatusLine property wouldn't work because I'm downloading a different symbol and not the one on the chart. Besides, I'd like to download multiple symbols as well. But appreciate your kind answer.
by holya
05 Sep 2012
Forum: MultiCharts .NET
Topic: Application wide object/indicator [SOLVED]
Replies: 4
Views: 3349

Application wide object/indicator [SOLVED]

Is it possible to have an indicator which is accessible throughout the application? For example an indicator which analyzes an index and makes its properties availble to all other indicators in the application. This would be very powerful as you notice.
by holya
05 Sep 2012
Forum: MultiCharts .NET
Topic: Bid Ask [SOLVED]
Replies: 3
Views: 3103

Bid Ask [SOLVED]

I have setup a symbol to collect its bid and ask information. How can I pragmatically retrieve them, let's say through IDataLoader?
by holya
29 Aug 2012
Forum: MultiCharts .NET
Topic: Instruments scanning
Replies: 1
Views: 2041

Instruments scanning

Is there a way scan through all instruments based on a set of conditions? For instance, when SP(or any other index) is close to a pivot point I'd like to scan through all symbols and pick up the ones which have good risk/reward ratio. Is this possible?

Go to advanced search